⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243994 in webkit


Ignore:
Timestamp:
Apr 8, 2019, 3:44:34 AM (7 years ago)
Author:
Carlos Garcia Campos
Message:

Merge r243971 - [GTK][WPE] outlook.live.com displays old-fashioned UI
https://bugs.webkit.org/show_bug.cgi?id=196642

Reviewed by Carlos Garcia Campos.

Source/WebCore:

The new good looking UI is shown as long as pretend we're a Mac in the UA.

  • platform/UserAgentQuirks.cpp:

(WebCore::urlRequiresChromeBrowser):

Tools:

  • TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp:

(TestWebKitAPI::TEST): New Mac platform quirk test.

Location:
releases/WebKitGTK/webkit-2.24
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.24/Source/WebCore/ChangeLog

    r243992 r243994  
     12019-04-05  Sergio Villar Senin  <svillar@igalia.com>
     2
     3        [GTK][WPE] outlook.live.com displays old-fashioned UI
     4        https://bugs.webkit.org/show_bug.cgi?id=196642
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        The new good looking UI is shown as long as pretend we're a Mac in the UA.
     9
     10        * platform/UserAgentQuirks.cpp:
     11        (WebCore::urlRequiresChromeBrowser):
     12
    1132019-04-03  Michael Catanzaro  <mcatanzaro@igalia.com>
    214
  • releases/WebKitGTK/webkit-2.24/Source/WebCore/platform/UserAgentQuirks.cpp

    r242448 r243994  
    100100    // agent to use the light version. Earlier versions even blocks users from
    101101    // accessing the calendar.
    102     if (domain == "mail.ntu.edu.tw")
     102    if (domain == "outlook.live.com" || domain == "mail.ntu.edu.tw")
    103103        return true;
    104104
  • releases/WebKitGTK/webkit-2.24/Tools/ChangeLog

    r243993 r243994  
     12019-04-05  Sergio Villar Senin  <svillar@igalia.com>
     2
     3        [GTK][WPE] outlook.live.com displays old-fashioned UI
     4        https://bugs.webkit.org/show_bug.cgi?id=196642
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp:
     9        (TestWebKitAPI::TEST): New Mac platform quirk test.
     10
    1112019-03-28  Michael Catanzaro  <mcatanzaro@igalia.com>
    212
  • releases/WebKitGTK/webkit-2.24/Tools/TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp

    r242448 r243994  
    9595    assertUserAgentForURLHasMacPlatformQuirk("http://docs.google.com/");
    9696    assertUserAgentForURLHasMacPlatformQuirk("http://paypal.com/");
     97    assertUserAgentForURLHasMacPlatformQuirk("http://outlook.live.com/");
    9798}
    9899
Note: See TracChangeset for help on using the changeset viewer.