Title: [208065] trunk/Source/WebCore
Revision
208065
Author
hy...@apple.com
Date
2016-10-28 13:45:22 -0700 (Fri, 28 Oct 2016)

Log Message

[CSS Parser] Support bopomofo Ruby
https://bugs.webkit.org/show_bug.cgi?id=164148

Reviewed by Simon Fraser.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (208064 => 208065)


--- trunk/Source/WebCore/ChangeLog	2016-10-28 20:41:38 UTC (rev 208064)
+++ trunk/Source/WebCore/ChangeLog	2016-10-28 20:45:22 UTC (rev 208065)
@@ -1,5 +1,15 @@
 2016-10-28  Dave Hyatt  <hy...@apple.com>
 
+        [CSS Parser] Support bopomofo Ruby
+        https://bugs.webkit.org/show_bug.cgi?id=164148
+
+        Reviewed by Simon Fraser.
+
+        * css/parser/CSSParserFastPaths.cpp:
+        (WebCore::CSSParserFastPaths::isValidKeywordPropertyAndValue):
+
+2016-10-28  Dave Hyatt  <hy...@apple.com>
+
         [CSS Parser] Add support for -webkit-canvas images
         https://bugs.webkit.org/show_bug.cgi?id=164144
 

Modified: trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp (208064 => 208065)


--- trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp	2016-10-28 20:41:38 UTC (rev 208064)
+++ trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp	2016-10-28 20:45:22 UTC (rev 208065)
@@ -732,7 +732,7 @@
     case CSSPropertyWebkitRtlOrdering:
         return valueID == CSSValueLogical || valueID == CSSValueVisual;
     case CSSPropertyWebkitRubyPosition:
-        return valueID == CSSValueBefore || valueID == CSSValueAfter;
+        return valueID == CSSValueBefore || valueID == CSSValueAfter || valueID == CSSValueInterCharacter;
     case CSSPropertyWebkitTextCombine:
         return valueID == CSSValueNone || valueID == CSSValueHorizontal;
     case CSSPropertyWebkitTextEmphasisPosition:
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to