Changeset 269955 in webkit


Ignore:
Timestamp:
Nov 18, 2020 7:11:28 AM (3 years ago)
Author:
commit-queue@webkit.org
Message:

[WPE][GTK] Update Outlook user agent quirk
https://bugs.webkit.org/show_bug.cgi?id=219049

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-11-18
Reviewed by Carlos Garcia Campos.

Source/WebCore:

Users report that our user agent quirk for Outlook no longer works. Problem is
outlook.live.com has moved to outlook.office.com. Thanks to Adrian Vovk for rebuilding
WebKit to confirm that this patch fixes the issue.

  • platform/UserAgentQuirks.cpp:

(WebCore::urlRequiresMacintoshPlatform):

Tools:

  • TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp:

(TestWebKitAPI::TEST):

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r269954 r269955  
     12020-11-18  Michael Catanzaro  <mcatanzaro@gnome.org>
     2
     3        [WPE][GTK] Update Outlook user agent quirk
     4        https://bugs.webkit.org/show_bug.cgi?id=219049
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Users report that our user agent quirk for Outlook no longer works. Problem is
     9        outlook.live.com has moved to outlook.office.com. Thanks to Adrian Vovk for rebuilding
     10        WebKit to confirm that this patch fixes the issue.
     11
     12        * platform/UserAgentQuirks.cpp:
     13        (WebCore::urlRequiresMacintoshPlatform):
     14
    1152020-11-17  Sergio Villar Senin  <svillar@igalia.com>
    216
  • trunk/Source/WebCore/platform/UserAgentQuirks.cpp

    r266584 r269955  
    141141    // agent to use the light version. Earlier versions even block users from
    142142    // accessing the calendar.
    143     if (domain == "outlook.live.com"
     143    if (domain == "outlook.office.com"
    144144        || domain == "mail.ntu.edu.tw"
    145145        || domain == "exchange.tu-berlin.de")
  • trunk/Tools/ChangeLog

    r269949 r269955  
     12020-11-18  Michael Catanzaro  <mcatanzaro@gnome.org>
     2
     3        [WPE][GTK] Update Outlook user agent quirk
     4        https://bugs.webkit.org/show_bug.cgi?id=219049
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp:
     9        (TestWebKitAPI::TEST):
     10
    1112020-11-18  Carlos Alberto Lopez Perez  <clopez@igalia.com>
    212
  • trunk/Tools/TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp

    r266584 r269955  
    115115    assertUserAgentForURLHasMacPlatformQuirk("http://www.chase.com/");
    116116    assertUserAgentForURLHasMacPlatformQuirk("http://paypal.com/");
    117     assertUserAgentForURLHasMacPlatformQuirk("http://outlook.live.com/");
     117    assertUserAgentForURLHasMacPlatformQuirk("http://outlook.office.com/");
    118118    assertUserAgentForURLHasMacPlatformQuirk("http://mail.ntu.edu.tw/");
    119119    assertUserAgentForURLHasMacPlatformQuirk("http://exchange.tu-berlin.de/");
Note: See TracChangeset for help on using the changeset viewer.