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

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

Issue 2549343002: Revert "CSS Motion Path: report use of deprecated motion* properties" (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698