OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .box { | 3 .box { |
4 position: absolute; | 4 position: absolute; |
5 width: 100px; | 5 width: 100px; |
6 } | 6 } |
7 #container { | 7 #container { |
8 float: right; | 8 float: right; |
9 writing-mode: vertical-lr; | 9 writing-mode: vertical-lr; |
10 motion-path: path("M0,0"); | 10 offset-path: path("M0,0"); |
11 margin-top: 20px; | 11 margin-top: 20px; |
12 } | 12 } |
13 </style> | 13 </style> |
14 <p id="title">crbug.com/656419: Only delete float lists from orthogonal roots wh
en they are due a layout that will rebuild them. Passes if it does not crash.</p
> | 14 <p id="title">crbug.com/656419: Only delete float lists from orthogonal roots wh
en they are due a layout that will rebuild them. Passes if it does not crash.</p
> |
15 <div id="container"> | 15 <div id="container"> |
16 <div class="box"></div> | 16 <div class="box"></div> |
17 </div> | 17 </div> |
18 <div></div> | 18 <div></div> |
19 <script> | 19 <script> |
20 if (window.testRunner) | 20 if (window.testRunner) |
21 testRunner.dumpAsText(); | 21 testRunner.dumpAsText(); |
22 document.designMode = 'on'; | 22 document.designMode = 'on'; |
23 document.execCommand("selectAll", false, null); | 23 document.execCommand("selectAll", false, null); |
24 document.execCommand("inserttext",false,"abc"); | 24 document.execCommand("inserttext",false,"abc"); |
25 document.execCommand("selectAll", false, null); | 25 document.execCommand("selectAll", false, null); |
26 document.body.offsetTop; | 26 document.body.offsetTop; |
27 container.remove(); | 27 container.remove(); |
28 </script> | 28 </script> |
OLD | NEW |