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

Unified Diff: chrome/test/data/webui/test_api.js

Issue 2689163002: Remove webkit prefixes for CSS Animation in chrome/ styles (Closed)
Patch Set: rebase Created 3 years, 10 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
« no previous file with comments | « chrome/test/data/webui/print_preview.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webui/test_api.js
diff --git a/chrome/test/data/webui/test_api.js b/chrome/test/data/webui/test_api.js
index 1a4841f7c938bfd58ae64cd11bdeda608cf5db75..a58c731e1fc9ffefb7d2ee66936b57cb6c329717 100644
--- a/chrome/test/data/webui/test_api.js
+++ b/chrome/test/data/webui/test_api.js
@@ -50,7 +50,7 @@ var testing = {};
/**
* Make all transitions and animations take 0ms. NOTE: this will completely
* disable webkitTransitionEnd events. If your code relies on them firing, it
- * will break. webkitAnimationEnd events should still work.
+ * will break. animationend events should still work.
*/
Test.disableAnimationsAndTransitions = function() {
var noAnimationStyle = document.createElement('style');
@@ -59,8 +59,8 @@ var testing = {};
'*, * /deep/ * {' +
' -webkit-transition-duration: 0ms !important;' +
' -webkit-transition-delay: 0ms !important;' +
- ' -webkit-animation-duration: 0ms !important;' +
- ' -webkit-animation-delay: 0ms !important;' +
+ ' animation-duration: 0ms !important;' +
+ ' animation-delay: 0ms !important;' +
'}';
document.querySelector('head').appendChild(noAnimationStyle);
« no previous file with comments | « chrome/test/data/webui/print_preview.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698