Title: [145767] trunk/LayoutTests
Revision
145767
Author
t...@chromium.org
Date
2013-03-13 15:56:58 -0700 (Wed, 13 Mar 2013)

Log 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:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (145766 => 145767)


--- trunk/LayoutTests/ChangeLog	2013-03-13 22:55:16 UTC (rev 145766)
+++ trunk/LayoutTests/ChangeLog	2013-03-13 22:56:58 UTC (rev 145767)
@@ -1,3 +1,13 @@
+2013-03-13  Tony Chang  <t...@chromium.org>
+
+        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:
+
 2013-03-13  Julien Chaffraix  <jchaffr...@webkit.org>
 
         [CSS Grid Layout] Handle min-width / max-width on the grid element

Modified: trunk/LayoutTests/css3/flexbox/negative-overflow-expected.txt (145766 => 145767)


--- trunk/LayoutTests/css3/flexbox/negative-overflow-expected.txt	2013-03-13 22:55:16 UTC (rev 145766)
+++ trunk/LayoutTests/css3/flexbox/negative-overflow-expected.txt	2013-03-13 22:56:58 UTC (rev 145767)
@@ -6,3 +6,4 @@
 PASS
 PASS
 PASS
+PASS

Modified: trunk/LayoutTests/css3/flexbox/negative-overflow.html (145766 => 145767)


--- trunk/LayoutTests/css3/flexbox/negative-overflow.html	2013-03-13 22:55:16 UTC (rev 145766)
+++ trunk/LayoutTests/css3/flexbox/negative-overflow.html	2013-03-13 22:56:58 UTC (rev 145767)
@@ -8,6 +8,7 @@
     height: 50px;
     width: 50px;
     background-color: red;
+    position: relative;
 }
 
 .vertical-padding {
@@ -40,6 +41,11 @@
     <div></div>
 </div>
 
+<div class="flexbox align-items-flex-end" data-expected-scroll-height="150">
+    <div></div>
+    <div style="position: absolute; left: 0; top: 50px;"></div>
+</div>
+
 <div class="flexbox align-items-center" data-expected-scroll-height="75">
     <div></div>
 </div>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to