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

Side by Side Diff: LayoutTests/transitions/transition-hit-test-transform.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 #target { 6 #target {
7 position: absolute; 7 position: absolute;
8 left: 0px; 8 left: 0px;
9 height: 200px; 9 height: 200px;
10 width: 200px; 10 width: 200px;
11 background-color: red; 11 background-color: red;
12 -webkit-transform: translateX(100px); 12 transform: translateX(100px);
13 -webkit-transition-property: -webkit-transform; 13 -webkit-transition-property: -webkit-transform;
alancutter (OOO until 2018) 2014/10/14 05:13:49 Need to change the transition property target as w
14 -webkit-transition-duration: 4s; 14 -webkit-transition-duration: 4s;
15 -webkit-transition-timing-function: linear; 15 -webkit-transition-timing-function: linear;
16 } 16 }
17 17
18 .dot { 18 .dot {
19 width: 10px; 19 width: 10px;
20 height: 10px; 20 height: 10px;
21 top: 100px; 21 top: 100px;
22 background-color: yellow; 22 background-color: yellow;
23 position:absolute; 23 position:absolute;
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 This test starts a transition of the '-webkit-transform' property and th en does elementFromPoint calls 76 This test starts a transition of the '-webkit-transform' property and th en does elementFromPoint calls
77 at the shown yellow dots to see if hit testing works 77 at the shown yellow dots to see if hit testing works
78 </div> 78 </div>
79 <div id="target"></div> 79 <div id="target"></div>
80 <div class="dot" style="left:150px"></div> 80 <div class="dot" style="left:150px"></div>
81 <div class="dot" style="left:300px"></div> 81 <div class="dot" style="left:300px"></div>
82 <div class="dot" style="left:450px"></div> 82 <div class="dot" style="left:450px"></div>
83 <div id="result"></div> 83 <div id="result"></div>
84 </body> 84 </body>
85 </html> 85 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698