Title: [260037] trunk/Source/WebKit
Revision
260037
Author
bfulg...@apple.com
Date
2020-04-13 13:40:14 -0700 (Mon, 13 Apr 2020)

Log Message

Add roblox.com to the desktop class quirks list
https://bugs.webkit.org/show_bug.cgi?id=210452
<rdar://problem/58859657>

Reviewed by Zalan Bujtas.

* UIProcess/ios/WebPageProxyIOS.mm:
(WebKit::desktopClassBrowsingRecommendedForRequest):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (260036 => 260037)


--- trunk/Source/WebKit/ChangeLog	2020-04-13 20:39:36 UTC (rev 260036)
+++ trunk/Source/WebKit/ChangeLog	2020-04-13 20:40:14 UTC (rev 260037)
@@ -1,3 +1,14 @@
+2020-04-13  Brent Fulgham  <bfulg...@apple.com>
+
+        Add roblox.com to the desktop class quirks list
+        https://bugs.webkit.org/show_bug.cgi?id=210452
+        <rdar://problem/58859657>
+
+        Reviewed by Zalan Bujtas.
+
+        * UIProcess/ios/WebPageProxyIOS.mm:
+        (WebKit::desktopClassBrowsingRecommendedForRequest):
+
 2020-04-13  Wenson Hsieh  <wenson_hs...@apple.com>
 
         Remove the "IgnoreViewportScalingConstraints" debug WebKit feature

Modified: trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm (260036 => 260037)


--- trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm	2020-04-13 20:39:36 UTC (rev 260036)
+++ trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm	2020-04-13 20:40:14 UTC (rev 260037)
@@ -1427,6 +1427,10 @@
     if (equalLettersIgnoringASCIICase(host, "fidelity.com") || host.endsWithIgnoringASCIICase(".fidelity.com"))
         return false;
 
+    // FIXME: Remove this quirk when <rdar://problem/61733101> is complete.
+    if (equalLettersIgnoringASCIICase(host, "roblox.com") || host.endsWithIgnoringASCIICase(".roblox.com"))
+        return false;
+
     return true;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to