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

Unified Diff: LayoutTests/fast/multicol/multicol-becomes-abspos-crash.html

Issue 1149333003: Ignore style changes on text node flowthread descendants. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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: LayoutTests/fast/multicol/multicol-becomes-abspos-crash.html
diff --git a/LayoutTests/fast/multicol/multicol-becomes-abspos-crash.html b/LayoutTests/fast/multicol/multicol-becomes-abspos-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..e125d51a884d16aa718eb0d447dbf2fb59a4b2a5
--- /dev/null
+++ b/LayoutTests/fast/multicol/multicol-becomes-abspos-crash.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<style>
+.c5:first-child { position: absolute; }
+</style>
+<div id="container">
+ <span id="dummy"></span>
+ <div class="c5" style="-webkit-column-count:3;">PASS if no crash or assertion failure.</div>
+</div>
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ document.body.offsetTop;
+ document.getElementById("container").removeChild(document.getElementById("dummy"));
+</script>

Powered by Google App Engine
This is Rietveld 408576698