Index: third_party/WebKit/LayoutTests/animations/filter-responsive-neutral-keyframe.html |
diff --git a/third_party/WebKit/LayoutTests/animations/filter-responsive-neutral-keyframe.html b/third_party/WebKit/LayoutTests/animations/filter-responsive-neutral-keyframe.html |
index 782192b0f1c81aea0b87d19c3954592b67750fd4..45a776ee852a7329d46ed27aad46d69d6779e3e6 100644 |
--- a/third_party/WebKit/LayoutTests/animations/filter-responsive-neutral-keyframe.html |
+++ b/third_party/WebKit/LayoutTests/animations/filter-responsive-neutral-keyframe.html |
@@ -7,14 +7,14 @@ div { |
} |
#target { |
background: red; |
- -webkit-filter: opacity(1); |
+ filter: opacity(1); |
animation: test 1e8s; |
} |
#green { |
background: green; |
} |
@keyframes test { |
- to { -webkit-filter: opacity(0); } |
+ to { filter: opacity(0); } |
} |
</style> |
<div id="green"></div> |
@@ -28,7 +28,7 @@ function waitForCompositor() { |
} |
waitForCompositor().then(() => { |
- target.style.webkitFilter = 'opacity(0)'; |
+ target.style.filter = 'opacity(0)'; |
}).then(() => waitForCompositor()).then(() => { |
if (window.testRunner) |
testRunner.notifyDone(); |