Changeset 248502 in webkit
- Timestamp:
- Aug 10, 2019, 3:45:43 PM (6 years ago)
- Location:
- trunk/Source
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r248501 r248502 1 2019-08-10 Alex Christensen <achristensen@webkit.org> 2 3 Disable ContentChangeObserver TouchEvent adjustment on youtube.com on iOS in mobile browsing mode 4 https://bugs.webkit.org/show_bug.cgi?id=200609 5 <rdar://problem/54015403> 6 7 Reviewed by Maciej Stachowiak. 8 9 When watching a youtube video on iOS with "Autoplay" switched to off, 10 upon finishing the video all clicks anywhere on the page are effectively ignored. 11 Disabling ContentChangeObserver's TouchEvent adjustment fixes this bug. I verified this manually. 12 This switch was introduced in r242621, and it disables part of a new feature, so there is low risk of fallout. 13 14 * loader/DocumentLoader.h: 15 (WebCore::DocumentLoader::setAllowContentChangeObserverQuirk): 16 (WebCore::DocumentLoader::allowContentChangeObserverQuirk const): 17 * page/Quirks.cpp: 18 (WebCore::Quirks::shouldDisableContentChangeObserverTouchEventAdjustment const): 19 * page/Quirks.h: 20 * page/ios/ContentChangeObserver.cpp: 21 (WebCore::ContentChangeObserver::touchEventDidStart): 22 1 23 2019-08-10 Said Abou-Hallawa <sabouhallawa@apple.com> 2 24 -
trunk/Source/WebCore/loader/DocumentLoader.h
r245873 r248502 392 392 WEBCORE_EXPORT void applyPoliciesToSettings(); 393 393 394 void setAllowContentChangeObserverQuirk(bool allow) { m_allowContentChangeObserverQuirk = allow; } 395 bool allowContentChangeObserverQuirk() const { return m_allowContentChangeObserverQuirk; } 396 394 397 protected: 395 398 WEBCORE_EXPORT DocumentLoader(const ResourceRequest&, const SubstituteData&); … … 595 598 String m_customUserAgent; 596 599 String m_customJavaScriptUserAgentAsSiteSpecificQuirks; 600 bool m_allowContentChangeObserverQuirk { false }; 597 601 String m_customNavigatorPlatform; 598 602 bool m_userContentExtensionsEnabled { true }; -
trunk/Source/WebCore/page/Quirks.cpp
r248501 r248502 140 140 } 141 141 142 bool Quirks::shouldDisableContentChangeObserverTouchEventAdjustment() const 143 { 144 if (!needsQuirks()) 145 return false; 146 147 auto& topDocument = m_document->topDocument(); 148 auto* topDocumentLoader = topDocument.loader(); 149 if (!topDocumentLoader || !topDocumentLoader->allowContentChangeObserverQuirk()) 150 return false; 151 152 auto host = m_document->topDocument().url().host(); 153 return host.endsWith(".youtube.com") || host == "youtube.com"; 154 } 155 142 156 bool Quirks::shouldStripQuotationMarkInFontFaceSetFamily() const 143 157 { -
trunk/Source/WebCore/page/Quirks.h
r248501 r248502 62 62 bool needsDeferKeyDownAndKeyPressTimersUntilNextEditingCommand() const; 63 63 bool shouldLightenJapaneseBoldSansSerif() const; 64 bool shouldDisableContentChangeObserverTouchEventAdjustment() const; 64 65 65 66 WEBCORE_EXPORT bool shouldDispatchSyntheticMouseEventsWhenModifyingSelection() const; -
trunk/Source/WebCore/page/ios/ContentChangeObserver.cpp
r248463 r248502 424 424 { 425 425 #if ENABLE(TOUCH_EVENTS) 426 if (!m_document.settings().contentChangeObserverEnabled() )426 if (!m_document.settings().contentChangeObserverEnabled() || m_document.quirks().shouldDisableContentChangeObserverTouchEventAdjustment()) 427 427 return; 428 428 if (eventType != PlatformEvent::Type::TouchStart) -
trunk/Source/WebKit/ChangeLog
r248501 r248502 1 2019-08-10 Alex Christensen <achristensen@webkit.org> 2 3 Disable ContentChangeObserver TouchEvent adjustment on youtube.com on iOS in mobile browsing mode 4 https://bugs.webkit.org/show_bug.cgi?id=200609 5 <rdar://problem/54015403> 6 7 Reviewed by Maciej Stachowiak. 8 9 * Shared/WebsitePoliciesData.cpp: 10 (WebKit::WebsitePoliciesData::encode const): 11 (WebKit::WebsitePoliciesData::decode): 12 (WebKit::WebsitePoliciesData::applyToDocumentLoader): 13 * Shared/WebsitePoliciesData.h: 14 * UIProcess/API/APIWebsitePolicies.cpp: 15 (API::WebsitePolicies::copy const): 16 (API::WebsitePolicies::data): 17 * UIProcess/API/APIWebsitePolicies.h: 18 * UIProcess/ios/WebPageProxyIOS.mm: 19 (WebKit::WebPageProxy::effectiveContentModeAfterAdjustingPolicies): 20 1 21 2019-08-10 Said Abou-Hallawa <sabouhallawa@apple.com> 2 22 -
trunk/Source/WebKit/Shared/WebsitePoliciesData.cpp
r246167 r248502 54 54 encoder << simulatedMouseEventsDispatchPolicy; 55 55 encoder << legacyOverflowScrollingTouchPolicy; 56 encoder << allowContentChangeObserverQuirk; 56 57 } 57 58 … … 130 131 return WTF::nullopt; 131 132 133 Optional<bool> allowContentChangeObserverQuirk; 134 decoder >> allowContentChangeObserverQuirk; 135 if (!allowContentChangeObserverQuirk) 136 return WTF::nullopt; 137 132 138 return { { 133 139 WTFMove(*contentBlockersEnabled), … … 147 153 WTFMove(*simulatedMouseEventsDispatchPolicy), 148 154 WTFMove(*legacyOverflowScrollingTouchPolicy), 155 WTFMove(*allowContentChangeObserverQuirk), 149 156 } }; 150 157 } … … 257 264 } 258 265 266 documentLoader.setAllowContentChangeObserverQuirk(websitePolicies.allowContentChangeObserverQuirk); 267 259 268 auto* frame = documentLoader.frame(); 260 269 if (!frame) -
trunk/Source/WebKit/Shared/WebsitePoliciesData.h
r245483 r248502 68 68 WebsiteSimulatedMouseEventsDispatchPolicy simulatedMouseEventsDispatchPolicy { WebsiteSimulatedMouseEventsDispatchPolicy::Default }; 69 69 WebsiteLegacyOverflowScrollingTouchPolicy legacyOverflowScrollingTouchPolicy { WebsiteLegacyOverflowScrollingTouchPolicy::Default }; 70 bool allowContentChangeObserverQuirk { false }; 70 71 71 72 void encode(IPC::Encoder&) const; -
trunk/Source/WebKit/UIProcess/API/APIWebsitePolicies.cpp
r246236 r248502 63 63 policies->setSimulatedMouseEventsDispatchPolicy(m_simulatedMouseEventsDispatchPolicy); 64 64 policies->setLegacyOverflowScrollingTouchPolicy(m_legacyOverflowScrollingTouchPolicy); 65 policies->setAllowContentChangeObserverQuirk(m_allowContentChangeObserverQuirk); 65 66 66 67 Vector<WebCore::HTTPHeaderField> legacyCustomHeaderFields; … … 116 117 m_simulatedMouseEventsDispatchPolicy, 117 118 m_legacyOverflowScrollingTouchPolicy, 119 m_allowContentChangeObserverQuirk, 118 120 }; 119 121 } -
trunk/Source/WebKit/UIProcess/API/APIWebsitePolicies.h
r246236 r248502 115 115 void setApplicationNameForDesktopUserAgent(const WTF::String& applicationName) { m_applicationNameForDesktopUserAgent = applicationName; } 116 116 117 bool allowContentChangeObserverQuirk() const { return m_allowContentChangeObserverQuirk; } 118 void setAllowContentChangeObserverQuirk(bool allow) { m_allowContentChangeObserverQuirk = allow; } 119 117 120 private: 118 121 WebsitePolicies(bool contentBlockersEnabled, OptionSet<WebKit::WebsiteAutoplayQuirk>, WebKit::WebsiteAutoplayPolicy, Vector<WebCore::HTTPHeaderField>&&, Vector<WebCore::CustomHeaderFields>&&, WebKit::WebsitePopUpPolicy, RefPtr<WebsiteDataStore>&&); … … 138 141 bool m_allowSiteSpecificQuirksToOverrideContentMode { false }; 139 142 WTF::String m_applicationNameForDesktopUserAgent; 143 bool m_allowContentChangeObserverQuirk { false }; 140 144 }; 141 145 -
trunk/Source/WebKit/UIProcess/ios/WebPageProxyIOS.mm
r248501 r248502 1421 1421 m_allowsFastClicksEverywhere = false; 1422 1422 1423 if (!useDesktopBrowsingMode) 1423 if (!useDesktopBrowsingMode) { 1424 policies.setAllowContentChangeObserverQuirk(true); 1424 1425 return WebContentMode::Mobile; 1426 } 1425 1427 1426 1428 if (policies.customUserAgent().isEmpty() && customUserAgent().isEmpty()) {
Note:
See TracChangeset
for help on using the changeset viewer.