Index: third_party/WebKit/LayoutTests/animations/cross-fade-webkit-mask-image.html |
diff --git a/third_party/WebKit/LayoutTests/animations/cross-fade-webkit-mask-image.html b/third_party/WebKit/LayoutTests/animations/cross-fade-webkit-mask-image.html |
index a96741133bece3d8d3fe93219140e43c4c0fc455..4fa481f304aaabfaf153b1c577934e7a24fdbe1c 100644 |
--- a/third_party/WebKit/LayoutTests/animations/cross-fade-webkit-mask-image.html |
+++ b/third_party/WebKit/LayoutTests/animations/cross-fade-webkit-mask-image.html |
@@ -8,7 +8,7 @@ |
height: 100px; |
width: 100px; |
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-image: -webkit-cross-fade(url(resources/stripes-100.png), url(resources/green-100.png), 25%); |
} |
- @-webkit-keyframes anim { |
+ @keyframes anim { |
from { -webkit-mask-image: url(resources/stripes-100.png); } |
to { -webkit-mask-image: url(resources/green-100.png); } |
} |