Title: [242145] trunk/Source/WebCore
Revision
242145
Author
you...@apple.com
Date
2019-02-27 12:14:20 -0800 (Wed, 27 Feb 2019)

Log Message

Remove LeetCode FetchRequest quirk
https://bugs.webkit.org/show_bug.cgi?id=195100

Reviewed by Alex Christensen.

Covered by manual testing.

* Modules/fetch/FetchRequest.cpp:
(WebCore::needsSignalQuirk):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (242144 => 242145)


--- trunk/Source/WebCore/ChangeLog	2019-02-27 20:13:14 UTC (rev 242144)
+++ trunk/Source/WebCore/ChangeLog	2019-02-27 20:14:20 UTC (rev 242145)
@@ -1,3 +1,15 @@
+2019-02-27  Youenn Fablet  <you...@apple.com>
+
+        Remove LeetCode FetchRequest quirk
+        https://bugs.webkit.org/show_bug.cgi?id=195100
+
+        Reviewed by Alex Christensen.
+
+        Covered by manual testing.
+
+        * Modules/fetch/FetchRequest.cpp:
+        (WebCore::needsSignalQuirk):
+
 2019-02-27  Chris Dumez  <cdu...@apple.com>
 
         Unable to log into chase.com on iPad when DeviceMotionEvent API is disabled

Modified: trunk/Source/WebCore/Modules/fetch/FetchRequest.cpp (242144 => 242145)


--- trunk/Source/WebCore/Modules/fetch/FetchRequest.cpp	2019-02-27 20:13:14 UTC (rev 242144)
+++ trunk/Source/WebCore/Modules/fetch/FetchRequest.cpp	2019-02-27 20:14:20 UTC (rev 242145)
@@ -154,7 +154,7 @@
         return false;
 
     auto host = document.topDocument().url().host();
-    return equalLettersIgnoringASCIICase(host, "leetcode.com") || equalLettersIgnoringASCIICase(host, "www.thrivepatientportal.com");
+    return equalLettersIgnoringASCIICase(host, "www.thrivepatientportal.com");
 }
 
 static inline Optional<Exception> processInvalidSignal(ScriptExecutionContext& context)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to