WebKit Bugzilla
Attachment 371840 Details for
Bug 198749
: tu-berlin university email web interface (Outlook Web App) goes directly to the light version instead of the normal web app
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-198749-20190611080105.patch (text/plain), 3.33 KB, created by
Michael Catanzaro
on 2019-06-11 06:01:06 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Michael Catanzaro
Created:
2019-06-11 06:01:06 PDT
Size:
3.33 KB
patch
obsolete
>Subversion Revision: 246310 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 1b49cd92acdd2c1d8b6dbd12e94f93cde941ae22..f709238007588b2ec5dace6d145899ae86ccb284 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,16 @@ >+2019-06-11 Michael Catanzaro <mcatanzaro@igalia.com> >+ >+ tu-berlin university email web interface (Outlook Web App) goes directly to the light version instead of the normal web app >+ https://bugs.webkit.org/show_bug.cgi?id=198749 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Add user agent quirk for exchange.tu-berlin.de, which has lost the right to receive an >+ accurate user agent from WebKit. >+ >+ * platform/UserAgentQuirks.cpp: >+ (WebCore::urlRequiresMacintoshPlatform): >+ > 2019-06-11 Ludovico de Nittis <ludovico.denittis@collabora.com> > > [GTK] Replace gdk_screen_get_monitor_geometry and gdk_screen_get_monitor_workarea >diff --git a/Source/WebCore/platform/UserAgentQuirks.cpp b/Source/WebCore/platform/UserAgentQuirks.cpp >index 04e06af639cc3bfd36a6cabc0a2e7bec1ae82ce9..f17600f381fdeba2bbe7796fff2fb9738fa2106d 100644 >--- a/Source/WebCore/platform/UserAgentQuirks.cpp >+++ b/Source/WebCore/platform/UserAgentQuirks.cpp >@@ -97,9 +97,11 @@ static bool urlRequiresMacintoshPlatform(const URL& url) > return true; > > // Microsoft Outlook Web App forces users with WebKitGTK+'s standard user >- // agent to use the light version. Earlier versions even blocks users from >+ // agent to use the light version. Earlier versions even block users from > // accessing the calendar. >- if (domain == "outlook.live.com" || domain == "mail.ntu.edu.tw") >+ if (domain == "outlook.live.com" >+ || domain == "mail.ntu.edu.tw" >+ || domain == "exchange.tu-berlin.de") > return true; > > // Google Docs shows a scary unsupported browser warning with WebKitGTK+'s >diff --git a/Tools/ChangeLog b/Tools/ChangeLog >index 0ec5138758889814784ceda7b6aa9168414842ba..ba2e2f47d1fcb3aea91f99358c4711b6d9baef44 100644 >--- a/Tools/ChangeLog >+++ b/Tools/ChangeLog >@@ -1,3 +1,13 @@ >+2019-06-11 Michael Catanzaro <mcatanzaro@igalia.com> >+ >+ tu-berlin university email web interface (Outlook Web App) goes directly to the light version instead of the normal web app >+ https://bugs.webkit.org/show_bug.cgi?id=198749 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp: >+ (TestWebKitAPI::TEST): >+ > 2019-06-11 Tadeu Zagallo <tzagallo@apple.com> > > Unreviewed, add myself to the JavaScriptCore watchlist. >diff --git a/Tools/TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp b/Tools/TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp >index 3a5c67213982b00e0c37cc380771256736c0cb90..5dba246393af906d1cbff68fb2cb524e063b023b 100644 >--- a/Tools/TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp >+++ b/Tools/TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp >@@ -95,6 +95,8 @@ TEST(UserAgentTest, Quirks) > assertUserAgentForURLHasMacPlatformQuirk("http://docs.google.com/"); > assertUserAgentForURLHasMacPlatformQuirk("http://paypal.com/"); > assertUserAgentForURLHasMacPlatformQuirk("http://outlook.live.com/"); >+ assertUserAgentForURLHasMacPlatformQuirk("http://mail.ntu.edu.tw/"); >+ assertUserAgentForURLHasMacPlatformQuirk("http://exchange.tu-berlin.de/"); > } > > } // namespace TestWebKitAPI
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 198749
:
371839
| 371840