Changeset 234505 in webkit


Ignore:
Timestamp:
Aug 2, 2018 12:06:42 PM (6 years ago)
Author:
mitz@apple.com
Message:

Fixed WebKit.AttrStyle timing out on build.webkit.org.

  • TestWebKitAPI/Tests/WebKitCocoa/AttrStyle.html: Changed from a URL that requires network access to one that doesn’t.
  • TestWebKitAPI/Tests/WebKitCocoa/AttrStyle.mm:

(TEST): Updated expected value.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r234504 r234505  
     12018-08-02  Dan Bernstein  <mitz@apple.com>
     2
     3        Fixed WebKit.AttrStyle timing out on build.webkit.org.
     4
     5        * TestWebKitAPI/Tests/WebKitCocoa/AttrStyle.html: Changed from a URL that requires network
     6          access to one that doesn’t.
     7        * TestWebKitAPI/Tests/WebKitCocoa/AttrStyle.mm:
     8        (TEST): Updated expected value.
     9
    1102018-08-02  Wenson Hsieh  <wenson_hsieh@apple.com>
    211
  • trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/AttrStyle.html

    r234502 r234505  
    1 <body background="https://example.com/body.png" dir="rtl" marginheight=20>
     1<body background="about://example.com/body.png" dir="rtl" marginheight=20>
    22    <div id="target" align="center">
    33    </div>
  • trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/AttrStyle.mm

    r234502 r234505  
    5757    isDone = false;
    5858    [webView evaluateJavaScript:@"document.body.getAttributeNode('background').style.cssText" completionHandler:^(NSString *result, NSError *error) {
    59         EXPECT_STREQ("background-image: url(\"https://example.com/body.png\");", result.UTF8String);
     59        EXPECT_STREQ("background-image: url(\"about://example.com/body.png\");", result.UTF8String);
    6060        isDone = true;
    6161    }];
Note: See TracChangeset for help on using the changeset viewer.