Title: [207638] trunk/Source/WebCore
Revision
207638
Author
hy...@apple.com
Date
2016-10-20 13:13:34 -0700 (Thu, 20 Oct 2016)

Log Message

[CSS Parser] Make sure to handle prefixed transform-style
https://bugs.webkit.org/show_bug.cgi?id=163756

Reviewed by Dean Jackson.

* css/parser/CSSParserFastPaths.cpp:
(WebCore::CSSParserFastPaths::isValidKeywordPropertyAndValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (207637 => 207638)


--- trunk/Source/WebCore/ChangeLog	2016-10-20 20:10:42 UTC (rev 207637)
+++ trunk/Source/WebCore/ChangeLog	2016-10-20 20:13:34 UTC (rev 207638)
@@ -1,5 +1,15 @@
 2016-10-20  Dave Hyatt  <hy...@apple.com>
 
+        [CSS Parser] Make sure to handle prefixed transform-style
+        https://bugs.webkit.org/show_bug.cgi?id=163756
+
+        Reviewed by Dean Jackson.
+
+        * css/parser/CSSParserFastPaths.cpp:
+        (WebCore::CSSParserFastPaths::isValidKeywordPropertyAndValue):
+
+2016-10-20  Dave Hyatt  <hy...@apple.com>
+
         [CSS Parser] Fix crash when parsing -webkit-margin-collapse
         https://bugs.webkit.org/show_bug.cgi?id=163753
 

Modified: trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp (207637 => 207638)


--- trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp	2016-10-20 20:10:42 UTC (rev 207637)
+++ trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp	2016-10-20 20:13:34 UTC (rev 207638)
@@ -733,6 +733,7 @@
     case CSSPropertyWebkitTextSecurity: // disc | circle | square | none
         return valueID == CSSValueDisc || valueID == CSSValueCircle || valueID == CSSValueSquare || valueID == CSSValueNone;
     case CSSPropertyTransformStyle:
+    case CSSPropertyWebkitTransformStyle:
         return valueID == CSSValueFlat || valueID == CSSValuePreserve3d;
     case CSSPropertyWebkitUserDrag: // auto | none | element
         return valueID == CSSValueAuto || valueID == CSSValueNone || valueID == CSSValueElement;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to