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

Side by Side Diff: LayoutTests/inspector/layers/layers-3d-view-hit-testing.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 <script src="../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/layers-test.js"></script> 4 <script src="../../http/tests/inspector/layers-test.js"></script>
5 <script> 5 <script>
6 function test() 6 function test()
7 { 7 {
8 var contentRoot; 8 var contentRoot;
9 var layers; 9 var layers;
10 var rootOffsetXInPixels, rootOffsetYInPixels, rootHeightInPixels, rootWidthI nPixels; 10 var rootOffsetXInPixels, rootOffsetYInPixels, rootHeightInPixels, rootWidthI nPixels;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 dumpOutlinedStateForLayers(); 93 dumpOutlinedStateForLayers();
94 94
95 InspectorTest.completeTest(); 95 InspectorTest.completeTest();
96 } 96 }
97 97
98 InspectorTest.requestLayers(onGotLayers); 98 InspectorTest.requestLayers(onGotLayers);
99 } 99 }
100 </script> 100 </script>
101 </head> 101 </head>
102 <body onload="runTest()" style="height:500px;width:500px;"> 102 <body onload="runTest()" style="height:500px;width:500px;">
103 <div id="a" style="-webkit-transform:translateZ(0px) translateY(60px) rotateZ(45 deg);width:300px;height:300px;margin-left:100px;"> 103 <div id="a" style="transform:translateZ(0px) translateY(60px) rotateZ(45deg);wid th:300px;height:300px;margin-left:100px;">
104 <div id="b" style="-webkit-transform:translateX(0px) translateY(0px) transla teZ(0px) rotateX(45deg) rotateY(45deg);width:300px;height:300px;"></div> 104 <div id="b" style="transform:translateX(0px) translateY(0px) translateZ(0px) rotateX(45deg) rotateY(45deg);width:300px;height:300px;"></div>
105 </div> 105 </div>
106 </body> 106 </body>
107 </html> 107 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698