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

Side by Side Diff: LayoutTests/inspector/layers/no-overlay-layers.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove duplicate transform 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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 .layer { 4 .layer {
5 -webkit-transform: translateZ(10px); 5 transform: translateZ(10px);
6 opacity: 0.8; 6 opacity: 0.8;
7 } 7 }
8 </style> 8 </style>
9 <script src="../../http/tests/inspector/inspector-test.js"></script> 9 <script src="../../http/tests/inspector/inspector-test.js"></script>
10 <script src="../../http/tests/inspector/layers-test.js"></script> 10 <script src="../../http/tests/inspector/layers-test.js"></script>
11 <script> 11 <script>
12 12
13 function updateGeometry() 13 function updateGeometry()
14 { 14 {
15 document.getElementById("a").style.width = "300px"; 15 document.getElementById("a").style.width = "300px";
(...skipping 25 matching lines...) Expand all
41 } 41 }
42 } 42 }
43 43
44 </script> 44 </script>
45 </head> 45 </head>
46 <body onload="runTest()"> 46 <body onload="runTest()">
47 <div id="a" style="width: 200px; height: 200px" class="layer"> 47 <div id="a" style="width: 200px; height: 200px" class="layer">
48 </div> 48 </div>
49 </body> 49 </body>
50 </html> 50 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698