Changeset 47261 in webkit
- Timestamp:
- Aug 13, 2009, 5:52:56 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r47260 r47261 1 2009-08-13 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Eric Seidel. 4 5 'box-orient: block-axis' behaves like 'box-orient: horizontal', causes 6 an assertion failure in debug builds 7 https://bugs.webkit.org/show_bug.cgi?id=28279 8 9 * fast/flexbox/block-axis-expected.checksum: Added. 10 * fast/flexbox/block-axis-expected.png: Added. 11 * fast/flexbox/block-axis-expected.txt: Added. 12 * fast/flexbox/block-axis.html: Added. 13 1 14 2009-08-13 Simon Fraser <simon.fraser@apple.com> 2 15 -
trunk/WebCore/ChangeLog
r47260 r47261 1 2009-08-13 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Eric Seidel. 4 5 'box-orient: block-axis' behaves like 'box-orient: horizontal', causes 6 an assertion failure in debug builds 7 https://bugs.webkit.org/show_bug.cgi?id=28279 8 9 Test: fast/flexbox/block-axis.html 10 11 * css/CSSPrimitiveValueMappings.h: 12 (WebCore::CSSPrimitiveValue::operator EBoxOrient): Map block-axis to 13 vertical. 14 1 15 2009-08-13 Simon Fraser <simon.fraser@apple.com> 2 16 -
trunk/WebCore/css/CSSPrimitiveValueMappings.h
r47176 r47261 524 524 return HORIZONTAL; 525 525 case CSSValueVertical: 526 case CSSValueBlockAxis: 526 527 return VERTICAL; 527 528 default:
Note:
See TracChangeset
for help on using the changeset viewer.