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

Side by Side Diff: LayoutTests/fast/block/positioning/relayout-nested-positioned-elements-crash-2.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 .fixedPosition { position: fixed; } 4 .fixedPosition { position: fixed; }
5 .runIn:nth-last-of-type(2n+1) { display: run-in; } 5 .runIn:nth-last-of-type(2n+1) { display: run-in; }
6 .transformed { float: none; -webkit-transform: skewX(45deg); } 6 .transformed { float: none; transform: skewX(45deg); }
7 .floatLastChild:last-child { display: inline-block; float: left;} 7 .floatLastChild:last-child { display: inline-block; float: left;}
8 </style> 8 </style>
9 <script> 9 <script>
10 if (window.testRunner) { 10 if (window.testRunner) {
11 testRunner.waitUntilDone(); 11 testRunner.waitUntilDone();
12 testRunner.dumpAsText(); 12 testRunner.dumpAsText();
13 } 13 }
14 var tableElement, liElement, formElement, buttonElement, fieldsetElement, labelE lement, insElement; 14 var tableElement, liElement, formElement, buttonElement, fieldsetElement, labelE lement, insElement;
15 function crash() { 15 function crash() {
16 tableElement = document.createElement('table'); 16 tableElement = document.createElement('table');
(...skipping 29 matching lines...) Expand all
46 if (window.testRunner) 46 if (window.testRunner)
47 testRunner.notifyDone() 47 testRunner.notifyDone()
48 } 48 }
49 49
50 window.addEventListener('load', removeContent, false); 50 window.addEventListener('load', removeContent, false);
51 document.addEventListener('DOMContentLoaded', crash, false); 51 document.addEventListener('DOMContentLoaded', crash, false);
52 </script> 52 </script>
53 <body> 53 <body>
54 </body> 54 </body>
55 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698