Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1936)

Unified Diff: third_party/WebKit/LayoutTests/animations/filter-responsive-neutral-keyframe.html

Issue 2970883003: Separate out animations tests with prefixing (Closed)
Patch Set: Rebaseline virtual/threaded version of test too Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698