Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1105)

Unified Diff: Source/core/style/StyleRareNonInheritedData.cpp

Issue 1287623002: Delete blink code for scroll-blocks-on (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merge with trunk (no changes from previous patch) Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/style/StyleRareNonInheritedData.h ('k') | Source/core/testing/Internals.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/style/StyleRareNonInheritedData.cpp
diff --git a/Source/core/style/StyleRareNonInheritedData.cpp b/Source/core/style/StyleRareNonInheritedData.cpp
index ff6c76b708c17b61e61ab40b9ce5fb4d8e070368..460563c08ac9ea35480462c6c48aa04ccb3a08e5 100644
--- a/Source/core/style/StyleRareNonInheritedData.cpp
+++ b/Source/core/style/StyleRareNonInheritedData.cpp
@@ -117,7 +117,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
, m_objectFit(ComputedStyle::initialObjectFit())
, m_isolation(ComputedStyle::initialIsolation())
, m_scrollBehavior(ComputedStyle::initialScrollBehavior())
- , m_scrollBlocksOn(ComputedStyle::initialScrollBlocksOn())
, m_scrollSnapType(ComputedStyle::initialScrollSnapType())
, m_requiresAcceleratedCompositingForExternalReasons(false)
, m_hasInlineTransform(false)
@@ -194,7 +193,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
, m_objectFit(o.m_objectFit)
, m_isolation(o.m_isolation)
, m_scrollBehavior(o.m_scrollBehavior)
- , m_scrollBlocksOn(o.m_scrollBlocksOn)
, m_scrollSnapType(o.m_scrollSnapType)
, m_requiresAcceleratedCompositingForExternalReasons(o.m_requiresAcceleratedCompositingForExternalReasons)
, m_hasInlineTransform(o.m_hasInlineTransform)
@@ -275,8 +273,7 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
&& m_objectFit == o.m_objectFit
&& m_isolation == o.m_isolation
&& m_scrollBehavior == o.m_scrollBehavior
- && m_scrollBlocksOn == o.m_scrollBlocksOn
- && m_scrollBlocksOn == o.m_scrollSnapType
+ && m_scrollSnapType == o.m_scrollSnapType
&& m_requiresAcceleratedCompositingForExternalReasons == o.m_requiresAcceleratedCompositingForExternalReasons
&& m_hasInlineTransform == o.m_hasInlineTransform
&& m_resize == o.m_resize
« no previous file with comments | « Source/core/style/StyleRareNonInheritedData.h ('k') | Source/core/testing/Internals.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698