Title: [242249] trunk/Source/WebCore
Revision
242249
Author
beid...@apple.com
Date
2019-02-28 18:10:22 -0800 (Thu, 28 Feb 2019)

Log Message

Followup to:
Universal links from Google search results pages don't open the app
https://bugs.webkit.org/show_bug.cgi?id=195126

Unreviewed.


* page/SecurityOrigin.cpp:
(WebCore::originsMatch): Remove a bogus assertion (reasoning in bugzilla)

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (242248 => 242249)


--- trunk/Source/WebCore/ChangeLog	2019-03-01 01:54:59 UTC (rev 242248)
+++ trunk/Source/WebCore/ChangeLog	2019-03-01 02:10:22 UTC (rev 242249)
@@ -1,3 +1,14 @@
+2019-02-28  Brady Eidson  <beid...@apple.com>
+
+        Followup to:
+        Universal links from Google search results pages don't open the app
+        https://bugs.webkit.org/show_bug.cgi?id=195126
+
+        Unreviewed.
+
+        * page/SecurityOrigin.cpp:
+        (WebCore::originsMatch): Remove a bogus assertion (reasoning in bugzilla)
+
 2019-02-28  Simon Fraser  <simon.fra...@apple.com>
 
         [iOS] Dark flash when opening Google AMP pages

Modified: trunk/Source/WebCore/page/SecurityOrigin.cpp (242248 => 242249)


--- trunk/Source/WebCore/page/SecurityOrigin.cpp	2019-03-01 01:54:59 UTC (rev 242248)
+++ trunk/Source/WebCore/page/SecurityOrigin.cpp	2019-03-01 02:10:22 UTC (rev 242249)
@@ -494,9 +494,7 @@
     if (&origin1 == &origin2)
         return true;
 
-    bool result = areOriginsMatching(origin1, origin2);
-    ASSERT(result == (origin1.toString() == origin2.toString()));
-    return result;
+    return areOriginsMatching(origin1, origin2);
 }
 
 bool originsMatch(const SecurityOrigin* origin1, const SecurityOrigin* origin2)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to