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

Unified Diff: LayoutTests/fast/multicol/dynamic/insert-spanner-after-spanner-with-inner-multicol-with-spanner-crash.html

Issue 1180613005: When looking for adjacent content inside multicols, don't consider inner multicols. (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
Index: LayoutTests/fast/multicol/dynamic/insert-spanner-after-spanner-with-inner-multicol-with-spanner-crash.html
diff --git a/LayoutTests/fast/multicol/dynamic/insert-spanner-after-spanner-with-inner-multicol-with-spanner-crash.html b/LayoutTests/fast/multicol/dynamic/insert-spanner-after-spanner-with-inner-multicol-with-spanner-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..a3f406e9ea06f3bf54dd6befc17734472e2a0ae6
--- /dev/null
+++ b/LayoutTests/fast/multicol/dynamic/insert-spanner-after-spanner-with-inner-multicol-with-spanner-crash.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<p>Insert a spanner after another spanner and before existing multicol content. The other spanner has a multicol container with yet another spanner inside.</p>
+<p>PASS if no crash or assertion failure.</p>
+<div style="-webkit-column-count:3;">
+ <div style="-webkit-column-span:all;">
+ <div style="-webkit-column-count:2;">
+ <div style="-webkit-column-span:all;"></div>
+ &nbsp;
+ </div>
+ </div>
+ <div id="willBecomeSpanner"></div>
+ &nbsp;
+</div>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ document.body.offsetTop;
+ document.getElementById("willBecomeSpanner").style.webkitColumnSpan = "all";
+</script>

Powered by Google App Engine
This is Rietveld 408576698