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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp

Issue 2769793002: Implement CSS: scroll-boundary-behavior (Closed)
Patch Set: update the tests 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/css/parser/CSSPropertyParser.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
index 0f34dd00347339c16e58a702f1e58ef5a04f9449..e1d421412e1bc51b26b2b920a6cc8642a11962d5 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
@@ -2656,6 +2656,8 @@ bool CSSPropertyParser::ParseShorthand(CSSPropertyID unresolved_property,
return Consume2Values(scrollSnapMarginBlockShorthand(), important);
case CSSPropertyScrollSnapMarginInline:
return Consume2Values(scrollSnapMarginInlineShorthand(), important);
+ case CSSPropertyScrollBoundaryBehavior:
+ return Consume2Values(scrollBoundaryBehaviorShorthand(), important);
default:
return false;
}

Powered by Google App Engine
This is Rietveld 408576698