Title: [197889] trunk/Source/WebKit2
- Revision
- 197889
- Author
- [email protected]
- Date
- 2016-03-09 15:00:57 -0800 (Wed, 09 Mar 2016)
Log Message
Handling 'allowUniversalAccessFromFileURLs' on WKWebViewConfiguration causes test breakage
https://bugs.webkit.org/show_bug.cgi?id=155265
Unreviewed work-around to allow testing to continue.
* UIProcess/API/Cocoa/WKWebViewConfiguration.mm:
(-[WKWebViewConfiguration init]): Workaround build break.
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (197888 => 197889)
--- trunk/Source/WebKit2/ChangeLog 2016-03-09 22:34:08 UTC (rev 197888)
+++ trunk/Source/WebKit2/ChangeLog 2016-03-09 23:00:57 UTC (rev 197889)
@@ -1,3 +1,13 @@
+2016-03-09 Brent Fulgham <[email protected]>
+
+ Handling 'allowUniversalAccessFromFileURLs' on WKWebViewConfiguration causes test breakage
+ https://bugs.webkit.org/show_bug.cgi?id=155265
+
+ Unreviewed work-around to allow testing to continue.
+
+ * UIProcess/API/Cocoa/WKWebViewConfiguration.mm:
+ (-[WKWebViewConfiguration init]): Workaround build break.
+
2016-03-09 Alex Christensen <[email protected]>
Fix use-after-free when cancelling synchronous XHR when using NetworkSession
Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm (197888 => 197889)
--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm 2016-03-09 22:34:08 UTC (rev 197888)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewConfiguration.mm 2016-03-09 23:00:57 UTC (rev 197889)
@@ -152,7 +152,7 @@
_allowsJavaScriptMarkup = YES;
_convertsPositionStyleOnCopy = NO;
_allowsMetaRefresh = YES;
- _allowUniversalAccessFromFileURLs = NO;
+ _allowUniversalAccessFromFileURLs = YES; //FIXME(155265): Workaround for test break
return self;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes