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

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

Issue 2769793002: Implement CSS: scroll-boundary-behavior (Closed)
Patch Set: Update promises tests and Scroll Manager Created 3 years, 5 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 a968158402c85b3375a83f4d65de70e523ef5caa..bb11b5df624efbda1c03bf23f93f50e431786442 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
@@ -2479,6 +2479,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