Index: third_party/WebKit/LayoutTests/animations/cross-fade-webkit-mask-box-image.html |
diff --git a/third_party/WebKit/LayoutTests/animations/cross-fade-webkit-mask-box-image.html b/third_party/WebKit/LayoutTests/animations/cross-fade-webkit-mask-box-image.html |
index 40d7eb1002ffd2ce3263aa74d5f9e4bb1d9dbb7b..957b377180cc133bc3170ce43559320396e0a4c7 100644 |
--- a/third_party/WebKit/LayoutTests/animations/cross-fade-webkit-mask-box-image.html |
+++ b/third_party/WebKit/LayoutTests/animations/cross-fade-webkit-mask-box-image.html |
@@ -8,7 +8,7 @@ |
height: 200px; |
width: 200px; |
background-color: red; |
- -webkit-animation: anim 1s linear infinite; |
+ animation: anim 1s linear infinite; |
} |
#boxStatic { |
position: absolute; |
@@ -19,7 +19,7 @@ |
background-color: red; |
-webkit-mask-box-image: -webkit-cross-fade(url(resources/stripes-100.png), url(resources/green-100.png), 25%) 50 stretch; |
} |
- @-webkit-keyframes anim { |
+ @keyframes anim { |
from { -webkit-mask-box-image: url(resources/stripes-100.png) 50 stretch; } |
to { -webkit-mask-box-image: url(resources/green-100.png) 50 stretch; } |
} |