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

Side by Side Diff: LayoutTests/transitions/3d/interrupted-transition.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 #box { 4 #box {
5 position: relative; 5 position: relative;
6 width: 10px; 6 width: 10px;
7 height: 10px; 7 height: 10px;
8 background-color: green; 8 background-color: green;
9 -webkit-transform: translate3d(0, 0, 0); 9 transform: translate3d(0, 0, 0);
10 -webkit-transition: -webkit-transform 200ms linear; 10 -webkit-transition: -webkit-transform 200ms linear;
alancutter (OOO until 2018) 2014/10/14 05:13:48 Need to change the transition property target as w
11 } 11 }
12 </style> 12 </style>
13 <script> 13 <script>
14 14
15 if (window.testRunner) { 15 if (window.testRunner) {
16 window.testRunner.dumpAsText(); 16 window.testRunner.dumpAsText();
17 window.testRunner.waitUntilDone(); 17 window.testRunner.waitUntilDone();
18 } 18 }
19 19
20 var NUMBER_OF_INTERRUPTIONS = 30; 20 var NUMBER_OF_INTERRUPTIONS = 30;
(...skipping 25 matching lines...) Expand all
46 }, false); 46 }, false);
47 47
48 </script> 48 </script>
49 </head> 49 </head>
50 <body> 50 <body>
51 <div id="box"></div> 51 <div id="box"></div>
52 <p>This test should not crash</p> 52 <p>This test should not crash</p>
53 <p id="results"></p> 53 <p id="results"></p>
54 </body> 54 </body>
55 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698