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

Unified Diff: LayoutTests/fast/multicol/dynamic/remove-content-before-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/remove-content-before-inner-multicol-with-spanner-crash.html
diff --git a/LayoutTests/fast/multicol/dynamic/remove-content-before-inner-multicol-with-spanner-crash.html b/LayoutTests/fast/multicol/dynamic/remove-content-before-inner-multicol-with-spanner-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..af546eb69e6c22040a31ccd5c08eb1fce4de7b9d
--- /dev/null
+++ b/LayoutTests/fast/multicol/dynamic/remove-content-before-inner-multicol-with-spanner-crash.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<p>Remove the only piece of column content that comes after a spanner that establishes an inner multicol container and has a spanner inside as well.</p>
+<p>PASS if no crash or assertion failure.</p>
+<div style="-webkit-columns:3;">
+ <div style="-webkit-column-span:all; -webkit-columns:3;">
+ <div style="-webkit-column-span:all;"></div>
+ </div>
+ <div id="elm"></div>
+</div>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ document.body.offsetTop;
+ document.getElementById("elm").style.display = "none";
+</script>

Powered by Google App Engine
This is Rietveld 408576698