Changeset 208031 in webkit


Ignore:
Timestamp:
Oct 27, 2016 9:30:22 PM (7 years ago)
Author:
hyatt@apple.com
Message:

[CSS Parser] Enhance grid-auto-flow parsing to allow dense first.
https://bugs.webkit.org/show_bug.cgi?id=164110

Reviewed by Simon Fraser.

  • css/StyleBuilderConverter.h:

(WebCore::StyleBuilderConverter::convertGridAutoFlow):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r208030 r208031  
     12016-10-27  Dave Hyatt  <hyatt@apple.com>
     2
     3        [CSS Parser] Enhance grid-auto-flow parsing to allow dense first.
     4        https://bugs.webkit.org/show_bug.cgi?id=164110
     5
     6        Reviewed by Simon Fraser.
     7
     8        * css/StyleBuilderConverter.h:
     9        (WebCore::StyleBuilderConverter::convertGridAutoFlow):
     10
    1112016-10-27  Simon Fraser  <simon.fraser@apple.com>
    212
  • trunk/Source/WebCore/css/StyleBuilderConverter.h

    r208030 r208031  
    10451045            autoFlow = AutoFlowColumn;
    10461046        break;
     1047    case CSSValueDense:
     1048        if (second && second->valueID() == CSSValueColumn)
     1049            return AutoFlowColumnDense;
     1050        return AutoFlowRowDense;
    10471051    default:
    10481052        ASSERT_NOT_REACHED();
Note: See TracChangeset for help on using the changeset viewer.