Changeset 148786 in webkit


Ignore:
Timestamp:
Apr 19, 2013 6:03:57 PM (11 years ago)
Author:
betravis@adobe.com
Message:

[css exclusions] Fix up shape-inside-recursive-layout test case
https://bugs.webkit.org/show_bug.cgi?id=114890

Reviewed by Dirk Schulze.

The children of the old-flexbox, new-flexbox, and grid shape-inside containers
should have their display value set to -webkit-inline-box, -webkit-inline-flex,
and -webkit-inline-grid respectively. These values should not be set for
the containers themselves, as we are interested in the behavior of descendants
of the shape-inside container.

  • fast/exclusions/shape-inside/shape-inside-recursive-layout-expected.html:
  • fast/exclusions/shape-inside/shape-inside-recursive-layout.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r148781 r148786  
     12013-04-19  Bear Travis  <betravis@adobe.com>
     2
     3        [css exclusions] Fix up shape-inside-recursive-layout test case
     4        https://bugs.webkit.org/show_bug.cgi?id=114890
     5
     6        Reviewed by Dirk Schulze.
     7
     8        The children of the old-flexbox, new-flexbox, and grid shape-inside  containers
     9        should have their display value set to -webkit-inline-box, -webkit-inline-flex,
     10        and -webkit-inline-grid respectively. These values should not be set for
     11        the containers themselves, as we are interested in the behavior of descendants
     12        of the shape-inside container.
     13
     14        * fast/exclusions/shape-inside/shape-inside-recursive-layout-expected.html:
     15        * fast/exclusions/shape-inside/shape-inside-recursive-layout.html:
     16
    1172013-04-19  Bear Travis  <betravis@adobe.com>
    218
  • trunk/LayoutTests/fast/exclusions/shape-inside/shape-inside-recursive-layout-expected.html

    r138040 r148786  
    3333    padding: 0; margin: 0;
    3434}
    35 #old-flexbox {
     35#old-flexbox * {
    3636    display: -webkit-inline-box;
    3737}
    38 #new-flexbox {
     38#new-flexbox * {
    3939    display: -webkit-inline-flex;
    4040}
    41 #grid {
     41#grid * {
    4242    display: -webkit-inline-grid;
    4343    -webkit-grid-rows: 100px;
    4444    -webkit-grid-columns: 100px;
    45 }
    46 #grid > .content {
    47     -webkit-grid-row: 1;
    48     -webkit-grid-column: 1;
    4945}
    5046</style>
  • trunk/LayoutTests/fast/exclusions/shape-inside/shape-inside-recursive-layout.html

    r138040 r148786  
    3333    padding: 0; margin: 0;
    3434}
    35 #old-flexbox {
     35#old-flexbox * {
    3636    display: -webkit-inline-box;
    3737}
    38 #new-flexbox {
     38#new-flexbox * {
    3939    display: -webkit-inline-flex;
    4040}
    41 #grid {
     41#grid * {
    4242    display: -webkit-inline-grid;
    4343    -webkit-grid-rows: 100px;
    4444    -webkit-grid-columns: 100px;
    45 }
    46 #grid > .content {
    47     -webkit-grid-row: 1;
    48     -webkit-grid-column: 1;
    4945}
    5046</style>
Note: See TracChangeset for help on using the changeset viewer.