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

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

Issue 2932593004: Update the snap points css properties (Closed)
Patch Set: rebase Created 3 years, 6 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
Index: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
index cf707a650f77c46821a584ed90123a3b4138a28b..c6e2f8504909737703961cad5825cf8f47d9b275 100644
--- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
@@ -125,7 +125,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
isolation_(ComputedStyle::InitialIsolation()),
contain_(ComputedStyle::InitialContain()),
scroll_behavior_(ComputedStyle::InitialScrollBehavior()),
- scroll_snap_type_(ComputedStyle::InitialScrollSnapType()),
requires_accelerated_compositing_for_external_reasons_(false),
has_inline_transform_(false),
resize_(ComputedStyle::InitialResize()),
@@ -215,7 +214,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(
isolation_(o.isolation_),
contain_(o.contain_),
scroll_behavior_(o.scroll_behavior_),
- scroll_snap_type_(o.scroll_snap_type_),
requires_accelerated_compositing_for_external_reasons_(
o.requires_accelerated_compositing_for_external_reasons_),
has_inline_transform_(o.has_inline_transform_),
@@ -292,7 +290,6 @@ bool StyleRareNonInheritedData::operator==(
touch_action_ == o.touch_action_ && object_fit_ == o.object_fit_ &&
isolation_ == o.isolation_ && contain_ == o.contain_ &&
scroll_behavior_ == o.scroll_behavior_ &&
- scroll_snap_type_ == o.scroll_snap_type_ &&
requires_accelerated_compositing_for_external_reasons_ ==
o.requires_accelerated_compositing_for_external_reasons_ &&
has_inline_transform_ == o.has_inline_transform_ &&

Powered by Google App Engine
This is Rietveld 408576698