| 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>
|
|
|