Index: third_party/WebKit/LayoutTests/animations/cross-fade-background-image.html |
diff --git a/third_party/WebKit/LayoutTests/animations/cross-fade-background-image.html b/third_party/WebKit/LayoutTests/animations/cross-fade-background-image.html |
index 5fbdcd5f9e82ab578372ea15d5413ec29928bc8b..2c9d7963f82cc328b63c7907c3fff0c61701e941 100644 |
--- a/third_party/WebKit/LayoutTests/animations/cross-fade-background-image.html |
+++ b/third_party/WebKit/LayoutTests/animations/cross-fade-background-image.html |
@@ -8,7 +8,7 @@ |
height: 100px; |
width: 100px; |
background-color: red; |
- -webkit-animation: anim 1s linear infinite; |
+ animation: anim 1s linear infinite; |
} |
#boxShorthand { |
position: absolute; |
@@ -17,7 +17,7 @@ |
height: 100px; |
width: 100px; |
background-color: red; |
- -webkit-animation: animShorthand 1s linear infinite; |
+ animation: animShorthand 1s linear infinite; |
} |
#boxStatic { |
position: absolute; |
@@ -28,11 +28,11 @@ |
background-color: red; |
background-image: -webkit-cross-fade(url(resources/blue-100.png), url(resources/green-100.png), 50%); |
} |
- @-webkit-keyframes anim { |
+ @keyframes anim { |
from { background-image: url(resources/blue-100.png); } |
to { background-image: url(resources/green-100.png); } |
} |
- @-webkit-keyframes animShorthand { |
+ @keyframes animShorthand { |
from { background: url(resources/blue-100.png); } |
to { background: url(resources/green-100.png); } |
} |