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

Unified Diff: third_party/WebKit/LayoutTests/fast/writing-mode/orthogonal-writing-modes-floats-crash.html

Issue 2025543002: Fix when orthogonal writing mode roots have floating siblings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix removeFloatingOrPositionedChildFromBlockLists Created 4 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/writing-mode/orthogonal-writing-modes-floats-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/writing-mode/orthogonal-writing-modes-floats-crash.html b/third_party/WebKit/LayoutTests/fast/writing-mode/orthogonal-writing-modes-floats-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..482fa4bf9f1a5eba460c727e738fc5c1311edc0c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/writing-mode/orthogonal-writing-modes-floats-crash.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<div id="header">
+ <span style="float:left;"> crbug.com/604095: Passes if it doesn't crash crbug.com/604095: Passes if it doesn't crash crbug.com/604095: Passes if it doesn't crash crbug.com/604095: Passes if it doesn't crash</span>
+ <script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ document.body.offsetTop;
+ </script>
+ <style>
+ html {
+ writing-mode:vertical-rl;
+ }
+ #h {
+ writing-mode: horizontal-tb;
+ background-color: green;
+ }
+ </style>
+ <div id="h">Text</div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698