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

Unified Diff: third_party/WebKit/LayoutTests/fast/multicol/flowthread-with-floats-destroyed-crash.html

Issue 2863093004: Flowthread should move its floatlists to container when evacuating (Closed)
Patch Set: Created 3 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: third_party/WebKit/LayoutTests/fast/multicol/flowthread-with-floats-destroyed-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/multicol/flowthread-with-floats-destroyed-crash.html b/third_party/WebKit/LayoutTests/fast/multicol/flowthread-with-floats-destroyed-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..ea26e971f074498eb1750b63f7db0033c104c9d4
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/multicol/flowthread-with-floats-destroyed-crash.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<style>
+ .CLASS5 { columns:1; }
+ body *:only-of-type { columns:auto; float:left; }
+</style>
+<div class="CLASS5">
+ <span>
+ <span contenteditable="true"></span>
+ </span>
+ <div>
+ <div></div>
+ <script>
+ document.body.offsetTop;
+ </script>
+ <div style="width:200px; writing-mode:vertical-rl;"></div>
+ </div>
+</div>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script>
+ test(function() { }, "crbug.com/714440: Passes if it does not crash.");
+</script>

Powered by Google App Engine
This is Rietveld 408576698