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

Side by Side Diff: third_party/WebKit/LayoutTests/transitions/font-family-during-transition.html

Issue 2521493002: CSS Transitions: Reduce usage of -webkit prefix in layout tests (Closed)
Patch Set: Created 4 years 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 display: inline; 7 display: inline;
8 font-size: 10px; 8 font-size: 10px;
9 font-family: sans-serif; 9 font-family: sans-serif;
10 -webkit-transition: font-size 2s linear; 10 transition: font-size 2s linear;
11 } 11 }
12 12
13 #control { 13 #control {
14 display: inline; 14 display: inline;
15 font-size: 15px; 15 font-size: 15px;
16 font-family: sans-serif; 16 font-family: sans-serif;
17 } 17 }
18 18
19 #box.changed { 19 #box.changed {
20 font-size: 20px; 20 font-size: 20px;
(...skipping 28 matching lines...) Expand all
49 runTransitionTest(expectedValues, setupTest); 49 runTransitionTest(expectedValues, setupTest);
50 </script> 50 </script>
51 </head> 51 </head>
52 <body> 52 <body>
53 <div id="box">Here is some text</div> 53 <div id="box">Here is some text</div>
54 <br> 54 <br>
55 <div id="control">Here is some text</div> 55 <div id="control">Here is some text</div>
56 <div id="result"></div> 56 <div id="result"></div>
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698