Title: [150321] trunk/Source/WebCore
Revision
150321
Author
[email protected]
Date
2013-05-17 21:11:30 -0700 (Fri, 17 May 2013)

Log Message

CSSParser parsing of CSSPropertyFontStretch falls into CSSPropertyGeometry
https://bugs.webkit.org/show_bug.cgi?id=116370

CSSPropertyFontStretch mistakenly fell through the shader parsing logic.

Reviewed by Alexandru Chiculita.

No new test possible, the feature is not implemented nor exposed.

* css/CSSParser.cpp:
(WebCore::CSSParser::parseValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (150320 => 150321)


--- trunk/Source/WebCore/ChangeLog	2013-05-18 03:12:01 UTC (rev 150320)
+++ trunk/Source/WebCore/ChangeLog	2013-05-18 04:11:30 UTC (rev 150321)
@@ -1,3 +1,17 @@
+2013-05-17  Michelangelo De Simone  <[email protected]>
+
+        CSSParser parsing of CSSPropertyFontStretch falls into CSSPropertyGeometry
+        https://bugs.webkit.org/show_bug.cgi?id=116370
+
+        CSSPropertyFontStretch mistakenly fell through the shader parsing logic.
+
+        Reviewed by Alexandru Chiculita.
+
+        No new test possible, the feature is not implemented nor exposed.
+
+        * css/CSSParser.cpp:
+        (WebCore::CSSParser::parseValue):
+
 2013-05-17  Timothy Hatcher  <[email protected]>
 
         Force the script debug server to continue when disabling the debugger.

Modified: trunk/Source/WebCore/css/CSSParser.cpp (150320 => 150321)


--- trunk/Source/WebCore/css/CSSParser.cpp	2013-05-18 03:12:01 UTC (rev 150320)
+++ trunk/Source/WebCore/css/CSSParser.cpp	2013-05-18 04:11:30 UTC (rev 150321)
@@ -2896,11 +2896,11 @@
         return false;
     case CSSPropertyPage:
         return parsePage(propId, important);
-    case CSSPropertyFontStretch:
 #if ENABLE(CSS_SHADERS)
     case CSSPropertyGeometry:
         return m_inFilterRule ? parseGeometry(propId, value, important) : false;
 #endif
+    case CSSPropertyFontStretch:
     case CSSPropertyTextLineThrough:
     case CSSPropertyTextOverline:
     case CSSPropertyTextUnderline:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to