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

Side by Side Diff: LayoutTests/inspector/layers/layers-panel-mouse-events.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 position: absolute; 5 position: absolute;
6 -webkit-transform: translateZ(10px); 6 transform: translateZ(10px);
7 opacity: 0.8; 7 opacity: 0.8;
8 left: 20px; 8 left: 20px;
9 top: 20px; 9 top: 20px;
10 } 10 }
11 </style> 11 </style>
12 <script src="../../http/tests/inspector/inspector-test.js"></script> 12 <script src="../../http/tests/inspector/inspector-test.js"></script>
13 <script src="../../http/tests/inspector/layers-test.js"></script> 13 <script src="../../http/tests/inspector/layers-test.js"></script>
14 <script> 14 <script>
15 function initialize_LayersPanelnMouseEvents() 15 function initialize_LayersPanelnMouseEvents()
16 { 16 {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 <body onload="runTest()"> 87 <body onload="runTest()">
88 <div id="a" style="width: 200px; height: 200px" class="layer"> 88 <div id="a" style="width: 200px; height: 200px" class="layer">
89 <div class="layer" id="b1" style="width: 150px; height: 100px"></div> 89 <div class="layer" id="b1" style="width: 150px; height: 100px"></div>
90 <div id="b2" class="layer" style="width: 140px; height: 110px"> 90 <div id="b2" class="layer" style="width: 140px; height: 110px">
91 <div id="b3" class="layer" style="width: 140px; height: 110px;"></div> 91 <div id="b3" class="layer" style="width: 140px; height: 110px;"></div>
92 <div id="c" class="layer" style="width: 100px; height: 90px"></div> 92 <div id="c" class="layer" style="width: 100px; height: 90px"></div>
93 </div> 93 </div>
94 </div> 94 </div>
95 </body> 95 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698