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

Side by Side Diff: LayoutTests/fast/multicol/span/positioned-child-not-removed-crash.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 Test passes if it does not crash. 4 Test passes if it does not crash.
5 <style> 5 <style>
6 .caption1 { -webkit-column-width: 1px; } 6 .caption1 { -webkit-column-width: 1px; }
7 .div1 { position: absolute; } 7 .div1 { position: absolute; }
8 .keygen1:nth-last-child(even) { display: block; -webkit-column-span: all; } 8 .keygen1:nth-last-child(even) { display: block; -webkit-column-span: all; }
9 .flexbox1 { display: -webkit-flexbox; padding-right: 10px; -webkit-transform: ro tate3d(0, 1, 0, 90deg); } 9 .flexbox1 { display: -webkit-flexbox; padding-right: 10px; transform: rotate3d(0 , 1, 0, 90deg); }
10 </style> 10 </style>
11 <script> 11 <script>
12 if (window.testRunner) 12 if (window.testRunner)
13 testRunner.dumpAsText(); 13 testRunner.dumpAsText();
14 14
15 function runTest() { 15 function runTest() {
16 caption1 = document.createElement('caption'); 16 caption1 = document.createElement('caption');
17 caption1.setAttribute('class', 'caption1'); 17 caption1.setAttribute('class', 'caption1');
18 div1 = document.createElement('div'); 18 div1 = document.createElement('div');
19 div1.setAttribute('class', 'div1'); 19 div1.setAttribute('class', 'div1');
(...skipping 12 matching lines...) Expand all
32 document.body.appendChild(caption1); 32 document.body.appendChild(caption1);
33 document.body.offsetTop; 33 document.body.offsetTop;
34 flexbox1.appendChild(div2); 34 flexbox1.appendChild(div2);
35 document.body.offsetTop; 35 document.body.offsetTop;
36 flexbox1.removeChild(div1); 36 flexbox1.removeChild(div1);
37 } 37 }
38 window.onload = runTest; 38 window.onload = runTest;
39 </script> 39 </script>
40 </body> 40 </body>
41 </html> 41 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/multicol/layers-split-across-columns.html ('k') | LayoutTests/fast/multicol/transform-inside-opacity.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698