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

Side by Side Diff: LayoutTests/transitions/retargetted-transition.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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 #box { 6 #box {
7 height: 100px; 7 height: 100px;
8 width: 100px; 8 width: 100px;
9 background-color: blue; 9 background-color: blue;
10 -webkit-transition-duration: 2s; 10 -webkit-transition-duration: 2s;
11 -webkit-transform: translate(0, 0); 11 transform: translate(0, 0);
12 } 12 }
13 13
14 </style> 14 </style>
15 <script> 15 <script>
16 if (window.testRunner) { 16 if (window.testRunner) {
17 testRunner.dumpAsText(); 17 testRunner.dumpAsText();
18 testRunner.waitUntilDone(); 18 testRunner.waitUntilDone();
19 } 19 }
20 20
21 function test() 21 function test()
(...skipping 23 matching lines...) Expand all
45 </head> 45 </head>
46 <body> 46 <body>
47 <p>Box should start moving right, then move down</p> 47 <p>Box should start moving right, then move down</p>
48 <div id="box"> 48 <div id="box">
49 </div> 49 </div>
50 50
51 <div id="result"> 51 <div id="result">
52 </div> 52 </div>
53 </body> 53 </body>
54 </html> 54 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698