Changeset 207682 in webkit


Ignore:
Timestamp:
Oct 21, 2016 10:23:57 AM (8 years ago)
Author:
hyatt@apple.com
Message:

[CSS Parser] Support horizontal-bt writing mode
https://bugs.webkit.org/show_bug.cgi?id=163797

Reviewed by Zalan Bujtas.

  • css/parser/CSSParserFastPaths.cpp:

(WebCore::CSSParserFastPaths::isValidKeywordPropertyAndValue):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r207681 r207682  
     12016-10-21  Dave Hyatt  <hyatt@apple.com>
     2
     3        [CSS Parser] Support horizontal-bt writing mode
     4        https://bugs.webkit.org/show_bug.cgi?id=163797
     5
     6        Reviewed by Zalan Bujtas.
     7
     8        * css/parser/CSSParserFastPaths.cpp:
     9        (WebCore::CSSParserFastPaths::isValidKeywordPropertyAndValue):
     10
    1112016-10-20  Brent Fulgham  <bfulgham@apple.com>
    212
  • trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp

    r207638 r207682  
    743743        return valueID == CSSValueAuto || valueID == CSSValueNone || valueID == CSSValueText || valueID == CSSValueAll;
    744744    case CSSPropertyWebkitWritingMode:
    745         return valueID >= CSSValueHorizontalTb && valueID <= CSSValueVerticalLr;
     745        return valueID >= CSSValueHorizontalTb && valueID <= CSSValueHorizontalBt;
    746746    case CSSPropertyWritingMode:
    747747        return valueID == CSSValueHorizontalTb
Note: See TracChangeset for help on using the changeset viewer.