Changeset 145767 in webkit


Ignore:
Timestamp:
Mar 13, 2013 3:56:58 PM (11 years ago)
Author:
tony@chromium.org
Message:

Add a test case for flexbox with negative overflow having an out of flow flex item
https://bugs.webkit.org/show_bug.cgi?id=112294

Reviewed by Ojan Vafai.

  • css3/flexbox/negative-overflow-expected.txt:
  • css3/flexbox/negative-overflow.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r145758 r145767  
     12013-03-13  Tony Chang  <tony@chromium.org>
     2
     3        Add a test case for flexbox with negative overflow having an out of flow flex item
     4        https://bugs.webkit.org/show_bug.cgi?id=112294
     5
     6        Reviewed by Ojan Vafai.
     7
     8        * css3/flexbox/negative-overflow-expected.txt:
     9        * css3/flexbox/negative-overflow.html:
     10
    1112013-03-13  Julien Chaffraix  <jchaffraix@webkit.org>
    212
  • trunk/LayoutTests/css3/flexbox/negative-overflow-expected.txt

    r145736 r145767  
    77PASS
    88PASS
     9PASS
  • trunk/LayoutTests/css3/flexbox/negative-overflow.html

    r145736 r145767  
    99    width: 50px;
    1010    background-color: red;
     11    position: relative;
    1112}
    1213
     
    3940<div class="flexbox align-items-flex-end" data-expected-scroll-height="50">
    4041    <div></div>
     42</div>
     43
     44<div class="flexbox align-items-flex-end" data-expected-scroll-height="150">
     45    <div></div>
     46    <div style="position: absolute; left: 0; top: 50px;"></div>
    4147</div>
    4248
Note: See TracChangeset for help on using the changeset viewer.