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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/calc/transitions.html

Issue 2518943002: 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 <style> 2 <style>
3 .transitionTest { 3 .transitionTest {
4 background-color: green; 4 background-color: green;
5 height: 100px; 5 height: 100px;
6 -webkit-transition: all 1s linear; 6 transition: all 1s linear;
7 -moz-transition: all 1s linear; 7 -moz-transition: all 1s linear;
8 } 8 }
9 9
10 #startCalcEndCalc, #startCalcEndPx, #startCalcEndPercent { 10 #startCalcEndCalc, #startCalcEndPx, #startCalcEndPercent {
11 width: calc(10% + 50px); 11 width: calc(10% + 50px);
12 width: -moz-calc(10% + 50px); 12 width: -moz-calc(10% + 50px);
13 } 13 }
14 14
15 #startPxEndCalc { 15 #startPxEndCalc {
16 width: 100px; 16 width: 100px;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 function setupTest() 74 function setupTest()
75 { 75 {
76 for (var i = 0; i < tests.length; i++) 76 for (var i = 0; i < tests.length; i++)
77 initialize(tests[i]); 77 initialize(tests[i]);
78 } 78 }
79 79
80 runTransitionTest(expectedValues, setupTest, undefined, false /* pixel test */); 80 runTransitionTest(expectedValues, setupTest, undefined, false /* pixel test */);
81 81
82 </script> 82 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698