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

Unified Diff: chrome/test/data/webui/print_preview.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/browser/resources/supervised_user_internals.css ('k') | chrome/test/data/webui/test_api.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webui/print_preview.js
diff --git a/chrome/test/data/webui/print_preview.js b/chrome/test/data/webui/print_preview.js
index 767082358a853c09fb502da8a827993b7a012b95..3282b3451504617e88513df27b25607782444162 100644
--- a/chrome/test/data/webui/print_preview.js
+++ b/chrome/test/data/webui/print_preview.js
@@ -160,9 +160,9 @@ PrintPreviewWebUITest.prototype = {
*/
waitForAnimationToEnd: function(elementId) {
// add a listener for the animation end event
- document.addEventListener('webkitAnimationEnd', function f(e) {
+ document.addEventListener('animationend', function f(e) {
if (e.target.id == elementId) {
- document.removeEventListener(f, 'webkitAnimationEnd');
+ document.removeEventListener(f, 'animationend');
testDone();
}
});
« no previous file with comments | « chrome/browser/resources/supervised_user_internals.css ('k') | chrome/test/data/webui/test_api.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698