WebKit Bugzilla
Attachment 370033 Details for
Bug 197943
: Add a website policy to disable the legacy -webkit-overflow-scrolling:touch behavior
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-197943-20190516113046.patch (text/plain), 18.45 KB, created by
Antoine Quint
on 2019-05-16 02:30:48 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Antoine Quint
Created:
2019-05-16 02:30:48 PDT
Size:
18.45 KB
patch
obsolete
>Subversion Revision: 245317 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 99be118f8d1f4b75e6ba19042910cb83d81f37de..9f37aaac2a394a809337f91baa37e8b04a30bbb1 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,17 @@ >+2019-05-16 Antoine Quint <graouts@apple.com> >+ >+ Add a website policy to disable the legacy -webkit-overflow-scrolling:touch behavior >+ https://bugs.webkit.org/show_bug.cgi?id=197943 >+ <rdar://problem/49078202> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * css/parser/CSSParserContext.cpp: >+ (WebCore::CSSParserContext::CSSParserContext): >+ * loader/DocumentLoader.h: >+ (WebCore::DocumentLoader::legacyOverflowScrollingTouchPolicy const): >+ (WebCore::DocumentLoader::setLegacyOverflowScrollingTouchPolicy): >+ > 2019-05-14 Wenson Hsieh <wenson_hsieh@apple.com> > > Missing cursor/caret showing in search field on google.com >diff --git a/Source/WebKit/ChangeLog b/Source/WebKit/ChangeLog >index 44ebe141a21d969570e6f01c9efee99c9a9eb179..c9cd8531db68c3f47b173d7927314bc5f88c1897 100644 >--- a/Source/WebKit/ChangeLog >+++ b/Source/WebKit/ChangeLog >@@ -1,3 +1,23 @@ >+2019-05-16 Antoine Quint <graouts@apple.com> >+ >+ Add a website policy to disable the legacy -webkit-overflow-scrolling:touch behavior >+ https://bugs.webkit.org/show_bug.cgi?id=197943 >+ <rdar://problem/49078202> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Shared/WebsiteLegacyOverflowScrollingTouchPolicy.h: Added. >+ * Shared/WebsitePoliciesData.cpp: >+ (WebKit::WebsitePoliciesData::encode const): >+ (WebKit::WebsitePoliciesData::decode): >+ (WebKit::WebsitePoliciesData::applyToDocumentLoader): >+ * Shared/WebsitePoliciesData.h: >+ * UIProcess/API/APIWebsitePolicies.cpp: >+ (API::WebsitePolicies::copy const): >+ (API::WebsitePolicies::data): >+ * UIProcess/API/APIWebsitePolicies.h: >+ * WebKit.xcodeproj/project.pbxproj: >+ > 2019-05-14 Ross Kirsling <ross.kirsling@sony.com> > > Unreviewed restoration of non-unified build. >diff --git a/Source/WebCore/css/parser/CSSParserContext.cpp b/Source/WebCore/css/parser/CSSParserContext.cpp >index 29f231c44225f8aa682d17330cbffa22e51ad4ab..7537188cb93d301c824a788d53953eaec034971b 100644 >--- a/Source/WebCore/css/parser/CSSParserContext.cpp >+++ b/Source/WebCore/css/parser/CSSParserContext.cpp >@@ -27,6 +27,7 @@ > #include "CSSParserContext.h" > > #include "Document.h" >+#include "DocumentLoader.h" > #include "Page.h" > #include "RuntimeEnabledFeatures.h" > #include "Settings.h" >@@ -60,6 +61,12 @@ CSSParserContext::CSSParserContext(const Document& document, const URL& sheetBas > #endif > #if ENABLE(OVERFLOW_SCROLLING_TOUCH) > legacyOverflowScrollingTouchEnabled = document.settings().legacyOverflowScrollingTouchEnabled(); >+ // The legacy -webkit-overflow-scrolling: touch behavior may have been disabled through the website policy, >+ // in that case we want to disable the legacy behavior regardless of what the setting says. >+ if (auto* loader = document.loader()) { >+ if (loader->legacyOverflowScrollingTouchPolicy() == LegacyOverflowScrollingTouchPolicy::Disable) >+ legacyOverflowScrollingTouchEnabled = false; >+ } > #endif > springTimingFunctionEnabled = document.settings().springTimingFunctionEnabled(); > constantPropertiesEnabled = document.settings().constantPropertiesEnabled(); >diff --git a/Source/WebCore/loader/DocumentLoader.h b/Source/WebCore/loader/DocumentLoader.h >index b1445e7bb92c5b6064fbe71f567a4892c4eb6195..3be1956d8aa3dda2ee12d2e4302e0b4086cadfa4 100644 >--- a/Source/WebCore/loader/DocumentLoader.h >+++ b/Source/WebCore/loader/DocumentLoader.h >@@ -131,6 +131,12 @@ enum class SimulatedMouseEventsDispatchPolicy : uint8_t { > Deny, > }; > >+enum class LegacyOverflowScrollingTouchPolicy : uint8_t { >+ Default, >+ Disable, >+ Enable, >+}; >+ > class DocumentLoader > : public RefCounted<DocumentLoader> > , public FrameDestructionObserver >@@ -313,6 +319,9 @@ public: > SimulatedMouseEventsDispatchPolicy simulatedMouseEventsDispatchPolicy() const { return m_simulatedMouseEventsDispatchPolicy; } > void setSimulatedMouseEventsDispatchPolicy(SimulatedMouseEventsDispatchPolicy policy) { m_simulatedMouseEventsDispatchPolicy = policy; } > >+ LegacyOverflowScrollingTouchPolicy legacyOverflowScrollingTouchPolicy() const { return m_legacyOverflowScrollingTouchPolicy; } >+ void setLegacyOverflowScrollingTouchPolicy(LegacyOverflowScrollingTouchPolicy policy) { m_legacyOverflowScrollingTouchPolicy = policy; } >+ > void addSubresourceLoader(ResourceLoader*); > void removeSubresourceLoader(LoadCompletionType, ResourceLoader*); > void addPlugInStreamLoader(ResourceLoader&); >@@ -596,6 +605,7 @@ private: > MetaViewportPolicy m_metaViewportPolicy { MetaViewportPolicy::Default }; > MediaSourcePolicy m_mediaSourcePolicy { MediaSourcePolicy::Default }; > SimulatedMouseEventsDispatchPolicy m_simulatedMouseEventsDispatchPolicy { SimulatedMouseEventsDispatchPolicy::Default }; >+ LegacyOverflowScrollingTouchPolicy m_legacyOverflowScrollingTouchPolicy { LegacyOverflowScrollingTouchPolicy::Default }; > > #if ENABLE(SERVICE_WORKER) > Optional<ServiceWorkerRegistrationData> m_serviceWorkerRegistrationData; >diff --git a/Source/WebKit/Shared/WebsiteLegacyOverflowScrollingTouchPolicy.h b/Source/WebKit/Shared/WebsiteLegacyOverflowScrollingTouchPolicy.h >new file mode 100644 >index 0000000000000000000000000000000000000000..e0d26dd5fa526258a3217d6f0753609a12371473 >--- /dev/null >+++ b/Source/WebKit/Shared/WebsiteLegacyOverflowScrollingTouchPolicy.h >@@ -0,0 +1,51 @@ >+/* >+ * Copyright (C) 2019 Apple Inc. All rights reserved. >+ * >+ * Redistribution and use in source and binary forms, with or without >+ * modification, are permitted provided that the following conditions >+ * are met: >+ * 1. Redistributions of source code must retain the above copyright >+ * notice, this list of conditions and the following disclaimer. >+ * 2. Redistributions in binary form must reproduce the above copyright >+ * notice, this list of conditions and the following disclaimer in the >+ * documentation and/or other materials provided with the distribution. >+ * >+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' >+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, >+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR >+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS >+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR >+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF >+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS >+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN >+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) >+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF >+ * THE POSSIBILITY OF SUCH DAMAGE. >+ */ >+ >+#pragma once >+ >+#include <wtf/Forward.h> >+ >+namespace WebKit { >+ >+enum class WebsiteLegacyOverflowScrollingTouchPolicy : uint8_t { >+ Default, >+ Disable, >+ Enable >+}; >+ >+} >+ >+namespace WTF { >+ >+template<> struct EnumTraits<WebKit::WebsiteLegacyOverflowScrollingTouchPolicy> { >+ using values = EnumValues< >+ WebKit::WebsiteLegacyOverflowScrollingTouchPolicy, >+ WebKit::WebsiteLegacyOverflowScrollingTouchPolicy::Default, >+ WebKit::WebsiteLegacyOverflowScrollingTouchPolicy::Disable, >+ WebKit::WebsiteLegacyOverflowScrollingTouchPolicy::Enable >+ >; >+}; >+ >+} // namespace WTF >diff --git a/Source/WebKit/Shared/WebsitePoliciesData.cpp b/Source/WebKit/Shared/WebsitePoliciesData.cpp >index 5a54860065e128643e828e252f2d0ba9cdb85224..a30bdb42a44f3685a245ca3fda1a5b7697b33cd0 100644 >--- a/Source/WebKit/Shared/WebsitePoliciesData.cpp >+++ b/Source/WebKit/Shared/WebsitePoliciesData.cpp >@@ -51,6 +51,7 @@ void WebsitePoliciesData::encode(IPC::Encoder& encoder) const > encoder << metaViewportPolicy; > encoder << mediaSourcePolicy; > encoder << simulatedMouseEventsDispatchPolicy; >+ encoder << legacyOverflowScrollingTouchPolicy; > } > > Optional<WebsitePoliciesData> WebsitePoliciesData::decode(IPC::Decoder& decoder) >@@ -122,6 +123,11 @@ Optional<WebsitePoliciesData> WebsitePoliciesData::decode(IPC::Decoder& decoder) > if (!simulatedMouseEventsDispatchPolicy) > return WTF::nullopt; > >+ Optional<WebsiteLegacyOverflowScrollingTouchPolicy> legacyOverflowScrollingTouchPolicy; >+ decoder >> legacyOverflowScrollingTouchPolicy; >+ if (!legacyOverflowScrollingTouchPolicy) >+ return WTF::nullopt; >+ > return { { > WTFMove(*contentBlockersEnabled), > WTFMove(*allowedAutoplayQuirks), >@@ -138,6 +144,7 @@ Optional<WebsitePoliciesData> WebsitePoliciesData::decode(IPC::Decoder& decoder) > WTFMove(*metaViewportPolicy), > WTFMove(*mediaSourcePolicy), > WTFMove(*simulatedMouseEventsDispatchPolicy), >+ WTFMove(*legacyOverflowScrollingTouchPolicy), > } }; > } > >@@ -236,6 +243,18 @@ void WebsitePoliciesData::applyToDocumentLoader(WebsitePoliciesData&& websitePol > break; > } > >+ switch (websitePolicies.legacyOverflowScrollingTouchPolicy) { >+ case WebsiteLegacyOverflowScrollingTouchPolicy::Default: >+ documentLoader.setLegacyOverflowScrollingTouchPolicy(WebCore::LegacyOverflowScrollingTouchPolicy::Default); >+ break; >+ case WebsiteLegacyOverflowScrollingTouchPolicy::Disable: >+ documentLoader.setLegacyOverflowScrollingTouchPolicy(WebCore::LegacyOverflowScrollingTouchPolicy::Disable); >+ break; >+ case WebsiteLegacyOverflowScrollingTouchPolicy::Enable: >+ documentLoader.setLegacyOverflowScrollingTouchPolicy(WebCore::LegacyOverflowScrollingTouchPolicy::Enable); >+ break; >+ } >+ > if (websitePolicies.websiteDataStoreParameters) { > if (auto* frame = documentLoader.frame()) { > if (auto* page = frame->page()) >diff --git a/Source/WebKit/Shared/WebsitePoliciesData.h b/Source/WebKit/Shared/WebsitePoliciesData.h >index 6a02fca8e10560acdac6f7a5bbf34d9190afd945..3512254849c048858ce96763186f8f0c296a4fa9 100644 >--- a/Source/WebKit/Shared/WebsitePoliciesData.h >+++ b/Source/WebKit/Shared/WebsitePoliciesData.h >@@ -28,6 +28,7 @@ > #include "WebsiteAutoplayPolicy.h" > #include "WebsiteAutoplayQuirk.h" > #include "WebsiteDataStoreParameters.h" >+#include "WebsiteLegacyOverflowScrollingTouchPolicy.h" > #include "WebsiteMediaSourcePolicy.h" > #include "WebsiteMetaViewportPolicy.h" > #include "WebsitePopUpPolicy.h" >@@ -65,6 +66,7 @@ struct WebsitePoliciesData { > WebsiteMetaViewportPolicy metaViewportPolicy { WebsiteMetaViewportPolicy::Default }; > WebsiteMediaSourcePolicy mediaSourcePolicy { WebsiteMediaSourcePolicy::Default }; > WebsiteSimulatedMouseEventsDispatchPolicy simulatedMouseEventsDispatchPolicy { WebsiteSimulatedMouseEventsDispatchPolicy::Default }; >+ WebsiteLegacyOverflowScrollingTouchPolicy legacyOverflowScrollingTouchPolicy { WebsiteLegacyOverflowScrollingTouchPolicy::Default }; > > void encode(IPC::Encoder&) const; > static Optional<WebsitePoliciesData> decode(IPC::Decoder&); >diff --git a/Source/WebKit/UIProcess/API/APIWebsitePolicies.cpp b/Source/WebKit/UIProcess/API/APIWebsitePolicies.cpp >index 99e830ce8d4d613cf9da850b21ca812819823690..cae0e3028e2d9c29ce91746bec0b6b9e07af5610 100644 >--- a/Source/WebKit/UIProcess/API/APIWebsitePolicies.cpp >+++ b/Source/WebKit/UIProcess/API/APIWebsitePolicies.cpp >@@ -60,6 +60,7 @@ Ref<WebsitePolicies> WebsitePolicies::copy() const > policies->setMetaViewportPolicy(m_metaViewportPolicy); > policies->setMediaSourcePolicy(m_mediaSourcePolicy); > policies->setSimulatedMouseEventsDispatchPolicy(m_simulatedMouseEventsDispatchPolicy); >+ policies->setLegacyOverflowScrollingTouchPolicy(m_legacyOverflowScrollingTouchPolicy); > Vector<WebCore::HTTPHeaderField> customHeaderFields; > customHeaderFields.reserveInitialCapacity(m_customHeaderFields.size()); > for (auto& field : m_customHeaderFields) >@@ -97,6 +98,7 @@ WebKit::WebsitePoliciesData WebsitePolicies::data() > m_metaViewportPolicy, > m_mediaSourcePolicy, > m_simulatedMouseEventsDispatchPolicy, >+ m_legacyOverflowScrollingTouchPolicy, > }; > } > >diff --git a/Source/WebKit/UIProcess/API/APIWebsitePolicies.h b/Source/WebKit/UIProcess/API/APIWebsitePolicies.h >index 4d49269a84ad8d8d454fa670a375aec4fddf6a70..5ebac1c8bfa695e9fb21b011aac0beef730a0945 100644 >--- a/Source/WebKit/UIProcess/API/APIWebsitePolicies.h >+++ b/Source/WebKit/UIProcess/API/APIWebsitePolicies.h >@@ -29,6 +29,7 @@ > #include "WebCompatibilityMode.h" > #include "WebsiteAutoplayPolicy.h" > #include "WebsiteAutoplayQuirk.h" >+#include "WebsiteLegacyOverflowScrollingTouchPolicy.h" > #include "WebsiteMediaSourcePolicy.h" > #include "WebsiteMetaViewportPolicy.h" > #include "WebsitePopUpPolicy.h" >@@ -101,6 +102,9 @@ public: > WebKit::WebsiteSimulatedMouseEventsDispatchPolicy simulatedMouseEventsDispatchPolicy() const { return m_simulatedMouseEventsDispatchPolicy; } > void setSimulatedMouseEventsDispatchPolicy(WebKit::WebsiteSimulatedMouseEventsDispatchPolicy policy) { m_simulatedMouseEventsDispatchPolicy = policy; } > >+ WebKit::WebsiteLegacyOverflowScrollingTouchPolicy legacyOverflowScrollingTouchPolicy() const { return m_legacyOverflowScrollingTouchPolicy; } >+ void setLegacyOverflowScrollingTouchPolicy(WebKit::WebsiteLegacyOverflowScrollingTouchPolicy policy) { m_legacyOverflowScrollingTouchPolicy = policy; } >+ > bool allowSiteSpecificQuirksToOverrideCompatibilityMode() const { return m_allowSiteSpecificQuirksToOverrideCompatibilityMode; } > void setAllowSiteSpecificQuirksToOverrideCompatibilityMode(bool value) { m_allowSiteSpecificQuirksToOverrideCompatibilityMode = value; } > >@@ -126,6 +130,7 @@ private: > WebKit::WebsiteMetaViewportPolicy m_metaViewportPolicy { WebKit::WebsiteMetaViewportPolicy::Default }; > WebKit::WebsiteMediaSourcePolicy m_mediaSourcePolicy { WebKit::WebsiteMediaSourcePolicy::Default }; > WebKit::WebsiteSimulatedMouseEventsDispatchPolicy m_simulatedMouseEventsDispatchPolicy { WebKit::WebsiteSimulatedMouseEventsDispatchPolicy::Default }; >+ WebKit::WebsiteLegacyOverflowScrollingTouchPolicy m_legacyOverflowScrollingTouchPolicy { WebKit::WebsiteLegacyOverflowScrollingTouchPolicy::Default }; > bool m_allowSiteSpecificQuirksToOverrideCompatibilityMode { false }; > WTF::String m_applicationNameForUserAgentWithModernCompatibility; > }; >diff --git a/Source/WebKit/WebKit.xcodeproj/project.pbxproj b/Source/WebKit/WebKit.xcodeproj/project.pbxproj >index 26c05c7469e68f7fb24c47086cab523fb42536e0..92ecb19f29befb57b3c783ec2df7570e66dc3ae1 100644 >--- a/Source/WebKit/WebKit.xcodeproj/project.pbxproj >+++ b/Source/WebKit/WebKit.xcodeproj/project.pbxproj >@@ -1115,6 +1115,7 @@ > 6BE969CB1E54D4CF008B7483 /* ResourceLoadStatisticsClassifierCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE969C91E54D4CF008B7483 /* ResourceLoadStatisticsClassifierCocoa.h */; }; > 6BE969CD1E54E054008B7483 /* ResourceLoadStatisticsClassifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE969CC1E54E054008B7483 /* ResourceLoadStatisticsClassifier.h */; }; > 6EE849C81368D9390038D481 /* WKInspectorPrivateMac.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EE849C61368D92D0038D481 /* WKInspectorPrivateMac.h */; settings = {ATTRIBUTES = (Private, ); }; }; >+ 711725A9228D564300018514 /* WebsiteLegacyOverflowScrollingTouchPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 711725A8228D563A00018514 /* WebsiteLegacyOverflowScrollingTouchPolicy.h */; }; > 71FB810B2260627E00323677 /* WebsiteSimulatedMouseEventsDispatchPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 71FB810A2260627A00323677 /* WebsiteSimulatedMouseEventsDispatchPolicy.h */; }; > 728E86F11795188C0087879E /* WebColorPickerMac.h in Headers */ = {isa = PBXBuildFile; fileRef = 728E86EF1795188C0087879E /* WebColorPickerMac.h */; }; > 75A8D2C8187CCFAB00C39C9E /* WKWebsiteDataStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A8D2C4187CCF9F00C39C9E /* WKWebsiteDataStore.h */; settings = {ATTRIBUTES = (Public, ); }; }; >@@ -3600,6 +3601,7 @@ > 6BE969CC1E54E054008B7483 /* ResourceLoadStatisticsClassifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResourceLoadStatisticsClassifier.h; sourceTree = "<group>"; }; > 6D8A91A511F0EFD100DD01FE /* com.apple.WebProcess.sb.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = com.apple.WebProcess.sb.in; path = WebProcess/com.apple.WebProcess.sb.in; sourceTree = "<group>"; }; > 6EE849C61368D92D0038D481 /* WKInspectorPrivateMac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WKInspectorPrivateMac.h; path = mac/WKInspectorPrivateMac.h; sourceTree = "<group>"; }; >+ 711725A8228D563A00018514 /* WebsiteLegacyOverflowScrollingTouchPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebsiteLegacyOverflowScrollingTouchPolicy.h; sourceTree = "<group>"; }; > 71FB810A2260627A00323677 /* WebsiteSimulatedMouseEventsDispatchPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebsiteSimulatedMouseEventsDispatchPolicy.h; sourceTree = "<group>"; }; > 728E86EF1795188C0087879E /* WebColorPickerMac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebColorPickerMac.h; sourceTree = "<group>"; }; > 728E86F01795188C0087879E /* WebColorPickerMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WebColorPickerMac.mm; sourceTree = "<group>"; }; >@@ -5272,6 +5274,7 @@ > 5C8DD3811FE455CA00F2A556 /* WebsiteAutoplayQuirk.h */, > 511F7D3F1EB1BCEE00E47B83 /* WebsiteDataStoreParameters.cpp */, > 511F7D401EB1BCEE00E47B83 /* WebsiteDataStoreParameters.h */, >+ 711725A8228D563A00018514 /* WebsiteLegacyOverflowScrollingTouchPolicy.h */, > F4CB09E4225D5A0300891487 /* WebsiteMediaSourcePolicy.h */, > F430E941224732A9005FE053 /* WebsiteMetaViewportPolicy.h */, > 5C3AEA8E1FE1F1DF002318D3 /* WebsitePoliciesData.cpp */, >@@ -9761,6 +9764,7 @@ > 1A4832D11A9BDC2F008B4DFE /* WebsiteDataRecord.h in Headers */, > 1A53C2AA1A325730004E8C70 /* WebsiteDataStore.h in Headers */, > 511F7D411EB1BCF500E47B83 /* WebsiteDataStoreParameters.h in Headers */, >+ 711725A9228D564300018514 /* WebsiteLegacyOverflowScrollingTouchPolicy.h in Headers */, > F4CB09E5225D5A0900891487 /* WebsiteMediaSourcePolicy.h in Headers */, > F430E9422247335F005FE053 /* WebsiteMetaViewportPolicy.h in Headers */, > 0EDE85032004E75D00030560 /* WebsitePopUpPolicy.h in Headers */,
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 197943
:
370033
|
370110
|
370113
|
370132
|
370133