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

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

Issue 2042353002: Remove floats from LayoutView in removeFloatingOrPositionedChildFromBlockLists (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/writing-mode/orthogonal-writing-modes-in-layoutview-with-floats-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/writing-mode/orthogonal-writing-modes-in-layoutview-with-floats.html
diff --git a/third_party/WebKit/LayoutTests/fast/writing-mode/orthogonal-writing-modes-in-layoutview-with-floats.html b/third_party/WebKit/LayoutTests/fast/writing-mode/orthogonal-writing-modes-in-layoutview-with-floats.html
new file mode 100644
index 0000000000000000000000000000000000000000..c4bea73103a21cdd4890284443feecc6cb546cad
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/writing-mode/orthogonal-writing-modes-in-layoutview-with-floats.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<script>
+function start() {
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ var html = document.createElement('html');
+ html.innerHTML = 'x<style>*{ float: right; }';
+ var body = html.children[1];
+ document.body = body;
+ document.body.offsetTop;
+
+ document.body.innerHTML = '<style>*{ all: initial; }';
+ document.body.style.writingMode = 'vertical-rl';
+}
+</script>
+<body onload="start()"></body>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/writing-mode/orthogonal-writing-modes-in-layoutview-with-floats-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698