Title: [242491] branches/safari-608.1.5.1-branch/Source/WebKit
Revision
242491
Author
alanc...@apple.com
Date
2019-03-05 11:10:26 -0800 (Tue, 05 Mar 2019)

Log Message

Cherry-pick r242411. rdar://problem/47820581

    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

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@242411 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-608.1.5.1-branch/Source/WebKit/ChangeLog (242490 => 242491)


--- branches/safari-608.1.5.1-branch/Source/WebKit/ChangeLog	2019-03-05 17:23:14 UTC (rev 242490)
+++ branches/safari-608.1.5.1-branch/Source/WebKit/ChangeLog	2019-03-05 19:10:26 UTC (rev 242491)
@@ -1,3 +1,33 @@
+2019-03-05  Alan Coon  <alanc...@apple.com>
+
+        Cherry-pick r242411. rdar://problem/47820581
+
+    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
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@242411 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    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  Alan Coon  <alanc...@apple.com>
 
         Cherry-pick r242376. rdar://problem/47820581

Modified: branches/safari-608.1.5.1-branch/Source/WebKit/WebProcess/WebPage/WebPage.cpp (242490 => 242491)


--- branches/safari-608.1.5.1-branch/Source/WebKit/WebProcess/WebPage/WebPage.cpp	2019-03-05 17:23:14 UTC (rev 242490)
+++ branches/safari-608.1.5.1-branch/Source/WebKit/WebProcess/WebPage/WebPage.cpp	2019-03-05 19:10:26 UTC (rev 242491)
@@ -4403,7 +4403,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