Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: third_party/WebKit/LayoutTests/css3/flexbox/max-width-violation.html

Issue 2146603007: [css-flexbox] freezeInflexibleItems has to skip out-of-flow boxes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/css3/flexbox/max-width-violation.html
diff --git a/third_party/WebKit/LayoutTests/css3/flexbox/max-width-violation.html b/third_party/WebKit/LayoutTests/css3/flexbox/max-width-violation.html
index 6f615537af668526a1449c934ce96a91079c3188..f5b0fe18b2f66f66d89e5ffcf713f26b246d1262 100644
--- a/third_party/WebKit/LayoutTests/css3/flexbox/max-width-violation.html
+++ b/third_party/WebKit/LayoutTests/css3/flexbox/max-width-violation.html
@@ -27,6 +27,10 @@
height: 10px;
z-index: -1;
}
+
+.abspos {
+ position: absolute;
+}
</style>
<script src="../../resources/testharness.js"></script>
@@ -49,3 +53,14 @@
</div>
</div>
+<p>This second part is just to ensure we don't assert</p>
+
+<div class="columns">
+ <div class="column1 abspos" data-expected-width="150">
+ Column 1
+ </div>
+ <div class="column2" data-expected-width="640">
+ Column 2
+ </div>
+</div>
+
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698