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

Unified Diff: Source/core/css/resolver/StyleBuilderCustom.cpp

Issue 211033002: Add runtime feature and property names for unprefixed CSS Transforms (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/core/css/resolver/StyleBuilderCustom.cpp
diff --git a/Source/core/css/resolver/StyleBuilderCustom.cpp b/Source/core/css/resolver/StyleBuilderCustom.cpp
index 4594e7069ae5addbf3e61c03fecacf1aecbae8fd..73d73e1d2978486af2ec6d055387e9bcd4c34cee 100644
--- a/Source/core/css/resolver/StyleBuilderCustom.cpp
+++ b/Source/core/css/resolver/StyleBuilderCustom.cpp
@@ -1740,6 +1740,14 @@ void StyleBuilder::oldApplyProperty(CSSPropertyID id, StyleResolverState& state,
return;
}
+ // FIXME: crbug.com/154772 Unimplemented css-transforms properties
+ case CSSPropertyBackfaceVisibility:
+ case CSSPropertyPerspective:
+ case CSSPropertyPerspectiveOrigin:
+ case CSSPropertyTransform:
+ case CSSPropertyTransformOrigin:
+ case CSSPropertyTransformStyle:
+ return;
// These properties are aliased and we already applied the property on the prefixed version.
case CSSPropertyAnimationDelay:
case CSSPropertyAnimationDirection:

Powered by Google App Engine
This is Rietveld 408576698