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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner.html

Issue 1691053002: Cannot do simplified layout on an object that contains a column-spanner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner.html b/third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner.html
new file mode 100644
index 0000000000000000000000000000000000000000..533c403541377c6b2a0ebbc57426c252f33ab0d4
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<p>There should be a blue square below, and no red.</p>
+<div style="-webkit-columns:2; width:100px; -webkit-column-gap:0; background:red;">
+ <div id="block" style="height:20px; background:blue;"></div>
+ <div>
+ <div style="position:relative;">
+ <div style="-webkit-column-span:all;"></div>
+ <div id="abspos" style="position:absolute;"></div>
+ <div></div>
+ </div>
+ </div>
+</div>
+<script>
+ document.body.offsetTop;
+ document.getElementById("block").style.height = "200px";
+ document.getElementById("abspos").style.display = "none";
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/multicol/dynamic/remove-abspos-next-to-spanner-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698