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

Unified Diff: third_party/WebKit/LayoutTests/animations/display-none-cancels-nested-animations.html

Issue 2523543004: CSS Animations: Remove unnecessary webkit prefixes from layout tests (Closed)
Patch Set: Created 4 years, 1 month 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/display-none-cancels-nested-animations.html
diff --git a/third_party/WebKit/LayoutTests/animations/display-none-cancels-nested-animations.html b/third_party/WebKit/LayoutTests/animations/display-none-cancels-nested-animations.html
index be9df8ca74d33cbdc85e3ea667b35f10ed41ff38..274ac89971b19a85e57f6f56ab0f1ed83d8d1625 100644
--- a/third_party/WebKit/LayoutTests/animations/display-none-cancels-nested-animations.html
+++ b/third_party/WebKit/LayoutTests/animations/display-none-cancels-nested-animations.html
@@ -4,14 +4,14 @@
width: 50px;
height: 50px;
background: red;
- -webkit-animation: flash 0.2s infinite;
+ animation: flash 0.2s infinite;
}
.hideMe {
display: none;
}
-@-webkit-keyframes flash {
+@keyframes flash {
0% {
opacity: 1;
}
@@ -29,7 +29,7 @@ if (window.testRunner) {
testRunner.dumpAsText();
}
var firstCall = true;
-child.addEventListener('webkitAnimationStart', function(e) {
+child.addEventListener('animationstart', function(e) {
if (firstCall) {
container.classList.add('hideMe');
container.offsetTop;

Powered by Google App Engine
This is Rietveld 408576698