* 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.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@234505
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2018-08-02 Dan Bernstein <mitz@apple.com>
+
+ 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.
+
2018-08-02 Wenson Hsieh <wenson_hsieh@apple.com>
[iOS] Keyboard becomes unresponsive after pressing delete while pressing down on a character key with accents
-<body background="https://example.com/body.png" dir="rtl" marginheight=20>
+<body background="about://example.com/body.png" dir="rtl" marginheight=20>
<div id="target" align="center">
</div>
</body>
isDone = false;
[webView evaluateJavaScript:@"document.body.getAttributeNode('background').style.cssText" completionHandler:^(NSString *result, NSError *error) {
- EXPECT_STREQ("background-image: url(\"https://example.com/body.png\");", result.UTF8String);
+ EXPECT_STREQ("background-image: url(\"about://example.com/body.png\");", result.UTF8String);
isDone = true;
}];
TestWebKitAPI::Util::run(&isDone);