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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/span/becomes-spanner-with-new-width.html

Issue 1962623002: Relayout an object that becomes a spanner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
Index: third_party/WebKit/LayoutTests/fast/multicol/span/becomes-spanner-with-new-width.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/span/becomes-spanner-with-new-width.html b/third_party/WebKit/LayoutTests/fast/multicol/span/becomes-spanner-with-new-width.html
new file mode 100644
index 0000000000000000000000000000000000000000..439161202ea98aa7d9f54fb8849dfe1bb57655c6
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/span/becomes-spanner-with-new-width.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<p>There should be a green square below, and no red.</p>
+<div id="root" style="column-fill:auto; width:300px; height:300px; background:red;">
+ <div style="width:100px;">
+ <div style="column-span:all; height:300px; background:green;" data-expected-width="300"></div>
+ </div>
+</div>
+<script src="../../../resources/check-layout.js"></script>
+<script>
+ document.body.offsetTop;
+ document.getElementById("root").style.columns = "2";
+ checkLayout("#root");
+</script>

Powered by Google App Engine
This is Rietveld 408576698