Index: LayoutTests/animations/timing-functions.html |
diff --git a/LayoutTests/animations/timing-functions.html b/LayoutTests/animations/timing-functions.html |
index bea1164741936c8fd407ded8fe39f72474f3a9de..6640d2de7e2afbba4a220e9b9d5543eb292b6e2c 100644 |
--- a/LayoutTests/animations/timing-functions.html |
+++ b/LayoutTests/animations/timing-functions.html |
@@ -43,6 +43,12 @@ |
#box8 { |
-webkit-animation-timing-function: steps(3, end); |
} |
+ #box9 { |
shans
2014/01/30 09:55:08
maybe a comment to indicate that these should act
|
+ -webkit-animation-timing-function: steps(3, middle); |
+ } |
+ #box10 { |
+ -webkit-animation-timing-function: step-middle; |
+ } |
</style> |
<script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script> |
@@ -74,6 +80,12 @@ |
[0.25, "box8", "left", 100, 5], |
[0.50, "box8", "left", 133, 5], |
[0.75, "box8", "left", 166, 5], |
+ [0.25, "box9", "left", 141, 5], |
+ [0.50, "box9", "left", 180, 5], |
+ [0.75, "box9", "left", 196, 5], |
+ [0.25, "box10", "left", 141, 5], |
+ [0.50, "box10", "left", 180, 5], |
+ [0.75, "box10", "left", 196, 5], |
]; |
runAnimationTest(expectedValues); |
@@ -99,6 +111,10 @@ It takes 3 snapshots and expects each result to be within a specified range. |
</div> |
<div class="box" id="box8"> |
</div> |
+<div class="box" id="box9"> |
+</div> |
+<div class="box" id="box10"> |
+</div> |
<div id="result"> |
</div> |
</body> |