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

Unified Diff: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp

Issue 1835303002: Implementation of the GreenWeb language extensions. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change GreenWeb-related CSS property names such that they apply in the desired order at runtime. Created 4 years, 9 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/ComputedStyleCSSValueMapping.cpp
diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
index 7fd5c90f217cd8b59c2f7d03391b9ef193472bd8..e6d29af35e433185e443707e0ae8961fa4f8e962 100644
--- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
+++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
@@ -1363,6 +1363,17 @@ PassRefPtrWillBeRawPtr<CSSValue> ComputedStyleCSSValueMapping::get(CSSPropertyID
case CSSPropertyInvalid:
return nullptr;
+ case CSSPropertyOnclickVpi:
+ case CSSPropertyOnclickVpu:
+ case CSSPropertyOnscrollVpi:
+ case CSSPropertyOnscrollVpu:
+ case CSSPropertyOntouchstartVpi:
+ case CSSPropertyOntouchstartVpu:
+ case CSSPropertyOntouchendVpi:
+ case CSSPropertyOntouchendVpu:
+ case CSSPropertyOntouchmoveVpi:
+ case CSSPropertyOntouchmoveVpu:
+ return cssValuePool().createValue(style.order(), CSSPrimitiveValue::UnitType::Number);
case CSSPropertyBackgroundColor:
return allowVisitedStyle ? cssValuePool().createColorValue(style.visitedDependentColor(CSSPropertyBackgroundColor).rgb()) : currentColorOrValidColor(style, style.backgroundColor());
case CSSPropertyBackgroundImage:

Powered by Google App Engine
This is Rietveld 408576698