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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-hit-test.html

Issue 2513343006: 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/animation-hit-test-transform.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/animation-hit-test.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-hit-test.html b/third_party/WebKit/LayoutTests/animations/animation-hit-test.html
index d6bfbd4501273f4fd90b2888261779bc39f35b01..b7cd3f24f7f94fe06577693d79627a97d87a41a7 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-hit-test.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-hit-test.html
@@ -12,10 +12,10 @@
height: 200px;
width: 200px;
background-color: red;
- -webkit-animation-duration: 4s;
- -webkit-animation-timing-function: linear;
+ animation-duration: 4s;
+ animation-timing-function: linear;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 100px; }
to { left: 300px; }
}
@@ -70,8 +70,8 @@
testRunner.waitUntilDone();
}
- document.getElementById("target").style.webkitAnimationName = "anim";
- document.addEventListener('webkitAnimationStart', doTest);
+ document.getElementById("target").style.animationName = "anim";
+ document.addEventListener('animationstart', doTest);
}
</script>
</head>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/animation-hit-test-transform.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698