Title: [208157] trunk/Source/WebCore
Revision
208157
Author
hy...@apple.com
Date
2016-10-31 10:09:18 -0700 (Mon, 31 Oct 2016)

Log Message

[CSS Parser] Fully support prefixed background-size and box-shadows
https://bugs.webkit.org/show_bug.cgi?id=164228

Reviewed by Zalan Bujtas.

* css/parser/CSSPropertyParser.cpp:
(WebCore::CSSPropertyParser::parseSingleValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (208156 => 208157)


--- trunk/Source/WebCore/ChangeLog	2016-10-31 17:07:39 UTC (rev 208156)
+++ trunk/Source/WebCore/ChangeLog	2016-10-31 17:09:18 UTC (rev 208157)
@@ -1,5 +1,15 @@
 2016-10-31  Dave Hyatt  <hy...@apple.com>
 
+        [CSS Parser] Fully support prefixed background-size and box-shadows
+        https://bugs.webkit.org/show_bug.cgi?id=164228
+
+        Reviewed by Zalan Bujtas.
+
+        * css/parser/CSSPropertyParser.cpp:
+        (WebCore::CSSPropertyParser::parseSingleValue):
+
+2016-10-31  Dave Hyatt  <hy...@apple.com>
+
         [CSS Parser] Get rid of CSSCustomIdentValue::creates
         https://bugs.webkit.org/show_bug.cgi?id=164225
 

Modified: trunk/Source/WebCore/css/parser/CSSPropertyParser.cpp (208156 => 208157)


--- trunk/Source/WebCore/css/parser/CSSPropertyParser.cpp	2016-10-31 17:07:39 UTC (rev 208156)
+++ trunk/Source/WebCore/css/parser/CSSPropertyParser.cpp	2016-10-31 17:09:18 UTC (rev 208157)
@@ -3516,7 +3516,8 @@
         return consumeZIndex(m_range);
     case CSSPropertyTextShadow: // CSS2 property, dropped in CSS2.1, back in CSS3, so treat as CSS3
     case CSSPropertyBoxShadow:
-        return consumeShadow(m_range, m_context.mode, property == CSSPropertyBoxShadow);
+    case CSSPropertyWebkitBoxShadow:
+        return consumeShadow(m_range, m_context.mode, property == CSSPropertyBoxShadow || property == CSSPropertyWebkitBoxShadow);
     case CSSPropertyFilter:
 #if ENABLE(FILTERS_LEVEL_2)
     case CSSPropertyWebkitBackdropFilter:
@@ -3658,6 +3659,7 @@
     case CSSPropertyWebkitBackgroundClip:
     case CSSPropertyWebkitBackgroundOrigin:
     case CSSPropertyWebkitBackgroundComposite:
+    case CSSPropertyWebkitBackgroundSize:
     case CSSPropertyWebkitMaskClip:
     case CSSPropertyWebkitMaskComposite:
     case CSSPropertyWebkitMaskImage:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to