Title: [231800] trunk
Revision
231800
Author
[email protected]
Date
2018-05-15 07:24:10 -0700 (Tue, 15 May 2018)

Log Message

Unreviewed, rolling out r230749

This did not work as desired.

Source/WebCore:

* platform/UserAgentQuirks.cpp:
(WebCore::urlRequiresMacintoshPlatform):

Tools:

* TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp:
(TestWebKitAPI::TEST):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (231799 => 231800)


--- trunk/Source/WebCore/ChangeLog	2018-05-15 13:49:06 UTC (rev 231799)
+++ trunk/Source/WebCore/ChangeLog	2018-05-15 14:24:10 UTC (rev 231800)
@@ -1,3 +1,12 @@
+2018-05-15  Michael Catanzaro  <[email protected]>
+
+        Unreviewed, rolling out r230749
+
+        This did not work as desired.
+
+        * platform/UserAgentQuirks.cpp:
+        (WebCore::urlRequiresMacintoshPlatform):
+
 2018-05-15  Dirk Schulze  <[email protected]>
 
         Add new SVGDOM SVGFEBLEND constants

Modified: trunk/Source/WebCore/platform/UserAgentQuirks.cpp (231799 => 231800)


--- trunk/Source/WebCore/platform/UserAgentQuirks.cpp	2018-05-15 13:49:06 UTC (rev 231799)
+++ trunk/Source/WebCore/platform/UserAgentQuirks.cpp	2018-05-15 14:24:10 UTC (rev 231800)
@@ -101,10 +101,8 @@
     // Microsoft Outlook Web App forces users with WebKitGTK+'s standard user
     // agent to use the light version. Earlier versions even blocks users from
     // accessing the calendar.
-    if (domain == "outlook.live.com"
-        || domain == "mail.ntu.edu.tw") {
+    if (domain == "mail.ntu.edu.tw")
         return true;
-    }
 
     // Google Docs shows a scary unsupported browser warning with WebKitGTK+'s
     // standard user agent.

Modified: trunk/Tools/ChangeLog (231799 => 231800)


--- trunk/Tools/ChangeLog	2018-05-15 13:49:06 UTC (rev 231799)
+++ trunk/Tools/ChangeLog	2018-05-15 14:24:10 UTC (rev 231800)
@@ -1,3 +1,12 @@
+2018-05-15  Michael Catanzaro  <[email protected]>
+
+        Unreviewed, rolling out r230749
+
+        This did not work as desired.
+
+        * TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp:
+        (TestWebKitAPI::TEST):
+
 2018-05-15  Antoine Quint  <[email protected]>
 
         [Web Animations] Expose Web Animations CSS integration as an experimental feature

Modified: trunk/Tools/TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp (231799 => 231800)


--- trunk/Tools/TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp	2018-05-15 13:49:06 UTC (rev 231799)
+++ trunk/Tools/TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp	2018-05-15 14:24:10 UTC (rev 231800)
@@ -92,7 +92,6 @@
     assertUserAgentForURLHasMacPlatformQuirk("http://intl.taobao.com/");
     assertUserAgentForURLHasMacPlatformQuirk("http://www.whatsapp.com/");
     assertUserAgentForURLHasMacPlatformQuirk("http://web.whatsapp.com/");
-    assertUserAgentForURLHasMacPlatformQuirk("http://outlook.live.com/");
     assertUserAgentForURLHasMacPlatformQuirk("http://www.chase.com/");
     assertUserAgentForURLHasMacPlatformQuirk("http://docs.google.com/");
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to