Add site-specific quirk for Google Drive

Fixes #5472
See #4805, #4810
This commit is contained in:
Florian Bruhin 2020-05-29 15:31:18 +02:00
parent ac7a3ce861
commit 73e08124d8
2 changed files with 4 additions and 0 deletions

View File

@ -72,6 +72,9 @@ Fixed
- The workaround for session loading with Qt 5.15 now handles
`sessions.lazy_restore` so that the saved page is loaded instead of the
"stub" page with no possibility to get to the web page.
- A site specific quirk to allow typing accented characters on Google
Docs was active for docs.google.com, but not drive.google.com. It is
now applied for both subdomains.
v1.11.1 (2020-05-07)
--------------------

View File

@ -403,6 +403,7 @@ def _init_site_specific_quirks():
'https://accounts.google.com/*': firefox_ua,
'https://*.slack.com/*': new_chrome_ua,
'https://docs.google.com/*': firefox_ua,
'https://drive.google.com/*': firefox_ua,
}
if not qtutils.version_check('5.9'):