Title: [242411] trunk/Source/WebKit
Revision
242411
Author
beid...@apple.com
Date
2019-03-04 23:55:27 -0800 (Mon, 04 Mar 2019)

Log Message

Unreviewed, rolling out r242376.

Broke some tests

Reverted changeset:

"Correctly handle sandbox extensions when the same WKWebView
loads multiple file:// URLs."
https://bugs.webkit.org/show_bug.cgi?id=195291
https://trac.webkit.org/changeset/242376

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (242410 => 242411)


--- trunk/Source/WebKit/ChangeLog	2019-03-05 04:27:58 UTC (rev 242410)
+++ trunk/Source/WebKit/ChangeLog	2019-03-05 07:55:27 UTC (rev 242411)
@@ -1,3 +1,16 @@
+2019-03-04  Brady Eidson  <beid...@apple.com>
+
+        Unreviewed, rolling out r242376.
+
+        Broke some tests
+
+        Reverted changeset:
+
+        "Correctly handle sandbox extensions when the same WKWebView
+        loads multiple file:// URLs."
+        https://bugs.webkit.org/show_bug.cgi?id=195291
+        https://trac.webkit.org/changeset/242376
+
 2019-03-04  Fujii Hironori  <hironori.fu...@sony.com>
 
         Use a SQLite database to hold the ResourceLoadStatistics data

Modified: trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp (242410 => 242411)


--- trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp	2019-03-05 04:27:58 UTC (rev 242410)
+++ trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp	2019-03-05 07:55:27 UTC (rev 242411)
@@ -4412,7 +4412,7 @@
     if (!documentLoader || !provisionalDocumentLoader)
         return false;
 
-    if (documentLoader->url().isLocalFile() && provisionalDocumentLoader->url().isLocalFile() && equalIgnoringQueryAndFragment(documentLoader->url(), provisionalDocumentLoader->url()))
+    if (documentLoader->url().isLocalFile() && provisionalDocumentLoader->url().isLocalFile())
         return true;
 
     return false;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to