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

Side by Side Diff: LayoutTests/fast/block/positioning/positioned-object-under-split-block-parent-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 <style> 3 <style>
4 .colContainer { -webkit-column-count: 0; } 4 .colContainer { -webkit-column-count: 0; }
5 .absolutePosition { position: absolute; } 5 .absolutePosition { position: absolute; }
6 .colSpanAll { -webkit-column-span: all; } 6 .colSpanAll { -webkit-column-span: all; }
7 .transformed { -webkit-transform: rotate(45deg); } 7 .transformed { transform: rotate(45deg); }
8 .hidden { display:none; } 8 .hidden { display:none; }
9 .normal { display:block;} 9 .normal { display:block;}
10 </style> 10 </style>
11 <script> 11 <script>
12 12
13 window.onload = function() { 13 window.onload = function() {
14 columnContainerBlock = document.createElement('div'); 14 columnContainerBlock = document.createElement('div');
15 columnContainerBlock.setAttribute('class', 'colContainer'); 15 columnContainerBlock.setAttribute('class', 'colContainer');
16 document.documentElement.appendChild(columnContainerBlock); 16 document.documentElement.appendChild(columnContainerBlock);
17 17
(...skipping 25 matching lines...) Expand all
43 splitBlockParent.removeChild(splitFlowDt); // Ensure the node with the bad p ositioned object list gets layout. 43 splitBlockParent.removeChild(splitFlowDt); // Ensure the node with the bad p ositioned object list gets layout.
44 44
45 if (window.testRunner) 45 if (window.testRunner)
46 testRunner.dumpAsText(); 46 testRunner.dumpAsText();
47 } 47 }
48 </script> 48 </script>
49 <body> 49 <body>
50 PASS if no assert or crash in debug 50 PASS if no assert or crash in debug
51 </body> 51 </body>
52 </html> 52 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698