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

Side by Side Diff: third_party/WebKit/LayoutTests/transitions/color-transition-rounding.html

Issue 2521493002: CSS Transitions: Reduce usage of -webkit prefix in layout tests (Closed)
Patch Set: Created 4 years, 1 month 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> 1 <!DOCTYPE>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 #test { 6 #test {
7 color: #00F; 7 color: #00F;
8 -webkit-transition: color 10s linear; 8 transition: color 10s linear;
9 } 9 }
10 10
11 #test.changed { 11 #test.changed {
12 color: #F00; 12 color: #F00;
13 } 13 }
14 </style> 14 </style>
15 <script src="../animations/resources/animation-test-helpers.js"></script> 15 <script src="../animations/resources/animation-test-helpers.js"></script>
16 <script type="text/javascript"> 16 <script type="text/javascript">
17 const expectedValues = [ 17 const expectedValues = [
18 // [time, element-id, property, expected-value, tolerance] 18 // [time, element-id, property, expected-value, tolerance]
(...skipping 12 matching lines...) Expand all
31 </head> 31 </head>
32 <body> 32 <body>
33 33
34 <div id="test"> 34 <div id="test">
35 This test will probably fail when run manually; it requires the pause API fo r accurate results. 35 This test will probably fail when run manually; it requires the pause API fo r accurate results.
36 </div> 36 </div>
37 37
38 <div id="result"></div> 38 <div id="result"></div>
39 </body> 39 </body>
40 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698