Changeset 284876 in webkit for trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
- Timestamp:
- Oct 26, 2021, 10:08:08 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
r284718 r284876 3008 3008 auto list = CSSValueList::createSpaceSeparated(); 3009 3009 ASSERT(style.isGridAutoFlowDirectionRow() || style.isGridAutoFlowDirectionColumn()); 3010 if (style.isGridAutoFlowDirectionRow()) 3010 if (style.isGridAutoFlowDirectionColumn()) 3011 list->append(cssValuePool.createIdentifierValue(CSSValueColumn)); 3012 else if (!style.isGridAutoFlowAlgorithmDense()) 3011 3013 list->append(cssValuePool.createIdentifierValue(CSSValueRow)); 3012 else3013 list->append(cssValuePool.createIdentifierValue(CSSValueColumn));3014 3014 3015 3015 if (style.isGridAutoFlowAlgorithmDense())
Note:
See TracChangeset
for help on using the changeset viewer.