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

Unified Diff: LayoutTests/fast/multicol/dynamic/insert-spanner-after-abspos-subtree-crash.html

Issue 1149923009: Be sure to skip objects inside out-of-flow subtrees. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | LayoutTests/fast/multicol/dynamic/insert-spanner-after-abspos-subtree-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/dynamic/insert-spanner-after-abspos-subtree-crash.html
diff --git a/LayoutTests/fast/multicol/dynamic/insert-spanner-after-abspos-subtree-crash.html b/LayoutTests/fast/multicol/dynamic/insert-spanner-after-abspos-subtree-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..e623e80b83548fc051e282411b7670367ba40b18
--- /dev/null
+++ b/LayoutTests/fast/multicol/dynamic/insert-spanner-after-abspos-subtree-crash.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<p>Insert a spanner into a multicol, before regular content, after an absolutely positioned subtree.</p>
+<p>PASS if no crash or assertion failure.</p>
+<div style="-webkit-columns:3;">
+ <div style="-webkit-column-span:all;"></div>
+ <div style="position:absolute;">
+ <div></div>
+ </div>
+ <div id="spanner" style="display:none; -webkit-column-span:all;"></div>
+ <div></div>
+ <div style="-webkit-column-span:all;"></div>
+ <div></div>
+</div>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ document.body.offsetTop;
+ document.getElementById("spanner").style.display = "block";
+</script>
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/insert-spanner-after-abspos-subtree-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698