Changeset 234505 in webkit
- Timestamp:
- Aug 2, 2018, 12:06:42 PM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r234504 r234505 1 2018-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 1 10 2018-08-02 Wenson Hsieh <wenson_hsieh@apple.com> 2 11 -
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> 2 2 <div id="target" align="center"> 3 3 </div> -
trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/AttrStyle.mm
r234502 r234505 57 57 isDone = false; 58 58 [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); 60 60 isDone = true; 61 61 }];
Note:
See TracChangeset
for help on using the changeset viewer.