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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.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
Index: third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html b/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html
index de20132cb19f548f1c8b1d525a74b407817a3147..c66fd7b14ef7427eba94b2c0578ff6e06c113044 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-immediate-start-event-after-ondemand-update.html
@@ -1,10 +1,10 @@
<!doctype html>
<style>
.animated {
- -webkit-animation: test 10ms;
- -webkit-animation-delay: -10ms;
+ animation: test 10ms;
+ animation-delay: -10ms;
}
-@-webkit-keyframes test {
+@keyframes test {
0% {}
}
</style>
@@ -20,7 +20,7 @@ onload = function() {
// CSS Animation and Transition events to not be fired on the subseuquent
// animation-frame timing update.
test.classList.add('animated');
- test.addEventListener('webkitAnimationStart', function() {
+ test.addEventListener('animationstart', function() {
document.documentElement.textContent = 'PASS';
if (window.testRunner)
testRunner.notifyDone();

Powered by Google App Engine
This is Rietveld 408576698