Index: LayoutTests/animations/duplicated-keyframes-name-unprefixed-03.html |
diff --git a/LayoutTests/animations/duplicated-keyframes-name.html b/LayoutTests/animations/duplicated-keyframes-name-unprefixed-03.html |
similarity index 90% |
copy from LayoutTests/animations/duplicated-keyframes-name.html |
copy to LayoutTests/animations/duplicated-keyframes-name-unprefixed-03.html |
index 1ab642c159289d78f96f5d9387f6e7d07d59a9aa..51167253ed5549261c302499799005c4f29cb871 100644 |
--- a/LayoutTests/animations/duplicated-keyframes-name.html |
+++ b/LayoutTests/animations/duplicated-keyframes-name-unprefixed-03.html |
@@ -18,18 +18,22 @@ |
-webkit-animation-name: anim; |
-webkit-animation-fill-mode: forwards; |
} |
- @-webkit-keyframes anim { |
+ @keyframes anim { |
from { left: 50px; } |
to { left: 100px; } |
} |
- @-webkit-keyframes irrelevant { |
+ @keyframes irrelevant { |
from { left: 150px; } |
to { left: 2500px; } |
} |
- @-webkit-keyframes anim { |
+ @keyframes anim { |
from { left: 200px; } |
to { left: 300px; } |
} |
+ @-webkit-keyframes anim { |
+ from { left: 200px; } |
+ to { left: 700px; } |
+ } |
</style> |
<script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script> |
<script type="text/javascript" charset="utf-8"> |