Changeset 47261 in webkit


Ignore:
Timestamp:
Aug 13, 2009 5:52:56 PM (15 years ago)
Author:
mitz@apple.com
Message:

WebCore: 'box-orient: block-axis' behaves like 'box-orient: horizontal', causes
an assertion failure in debug builds
https://bugs.webkit.org/show_bug.cgi?id=28279

Reviewed by Eric Seidel.

Test: fast/flexbox/block-axis.html

  • css/CSSPrimitiveValueMappings.h:

(WebCore::CSSPrimitiveValue::operator EBoxOrient): Map block-axis to
vertical.

LayoutTests: 2009-08-13 Dan Bernstein <mitz@apple.com>

Reviewed by Eric Seidel.

'box-orient: block-axis' behaves like 'box-orient: horizontal', causes
an assertion failure in debug builds
https://bugs.webkit.org/show_bug.cgi?id=28279

  • fast/flexbox/block-axis-expected.checksum: Added.
  • fast/flexbox/block-axis-expected.png: Added.
  • fast/flexbox/block-axis-expected.txt: Added.
  • fast/flexbox/block-axis.html: Added.
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
    1142009-08-13  Simon Fraser  <simon.fraser@apple.com>
    215
  • trunk/WebCore/ChangeLog

    r47260 r47261  
     12009-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
    1152009-08-13  Simon Fraser  <simon.fraser@apple.com>
    216
  • trunk/WebCore/css/CSSPrimitiveValueMappings.h

    r47176 r47261  
    524524            return HORIZONTAL;
    525525        case CSSValueVertical:
     526        case CSSValueBlockAxis:
    526527            return VERTICAL;
    527528        default:
Note: See TracChangeset for help on using the changeset viewer.