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

Side by Side Diff: LayoutTests/transforms/3d/point-mapping/3d-point-mapping-coplanar.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 <title>Hit test coplanar elements</title> 3 <title>Hit test coplanar elements</title>
4 <script src="point-mapping-helpers.js" type="text/javascript" charset="utf-8"> </script> 4 <script src="point-mapping-helpers.js" type="text/javascript" charset="utf-8"> </script>
5 5
6 <script type="text/javascript" charset="utf-8"> 6 <script type="text/javascript" charset="utf-8">
7 7
8 function test() 8 function test()
9 { 9 {
10 dispatchEvent(44, 44, 'box1', 2, 2); 10 dispatchEvent(44, 44, 'box1', 2, 2);
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 .transformed { 55 .transformed {
56 position: absolute; 56 position: absolute;
57 top: 20px; 57 top: 20px;
58 left: 30px; 58 left: 30px;
59 height: 100px; 59 height: 100px;
60 width: 200px; 60 width: 200px;
61 border: 1px solid black; 61 border: 1px solid black;
62 background-color: #AAA; 62 background-color: #AAA;
63 -webkit-box-sizing: border-box; 63 -webkit-box-sizing: border-box;
64 -webkit-transform: translateZ(20px); 64 transform: translateZ(20px);
65 } 65 }
66 66
67 #results { 67 #results {
68 position: absolute; 68 position: absolute;
69 left: 30px; 69 left: 30px;
70 top: 400px; 70 top: 400px;
71 } 71 }
72 72
73 #mousepos { 73 #mousepos {
74 position: absolute; 74 position: absolute;
(...skipping 14 matching lines...) Expand all
89 <div class="transformed box" id="box3" style="top: 60px;"></div> 89 <div class="transformed box" id="box3" style="top: 60px;"></div>
90 <div class="transformed box" id="box4" style="top: 100px;"></div> 90 <div class="transformed box" id="box4" style="top: 100px;"></div>
91 </div> 91 </div>
92 </div> 92 </div>
93 <p>When hit-testing coplanar elements, document order wins.</p> 93 <p>When hit-testing coplanar elements, document order wins.</p>
94 94
95 <div id="mousepos"></div> 95 <div id="mousepos"></div>
96 96
97 </body> 97 </body>
98 </html> 98 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698