Index: Source/core/css/parser/CSSPropertyParser.cpp |
diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp |
index d789b39fb7d88ef9f3672af8bb08475ea64cb903..84794848e14ed0007437fd101afaf13d33690145 100644 |
--- a/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -1612,6 +1612,14 @@ bool CSSPropertyParser::parseValue(CSSPropertyID propId, bool important) |
case CSSPropertyUserZoom: |
validPrimitive = false; |
break; |
+ // FIXME: crbug.com/154772 Unimplemented css-transforms properties |
+ case CSSPropertyBackfaceVisibility: |
+ case CSSPropertyPerspective: |
+ case CSSPropertyPerspectiveOrigin: |
+ case CSSPropertyTransform: |
+ case CSSPropertyTransformOrigin: |
+ case CSSPropertyTransformStyle: |
+ return false; |
default: |
return parseSVGValue(propId, important); |
} |