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

Unified Diff: chrome/browser/resources/local_ntp/local_ntp.js

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: CSSOM Created 4 years 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: chrome/browser/resources/local_ntp/local_ntp.js
diff --git a/chrome/browser/resources/local_ntp/local_ntp.js b/chrome/browser/resources/local_ntp/local_ntp.js
index 9d3ce86c972f9dda3d4b218865399a9a358bd1e0..280bffed95bd47a6bfbf55d2d31310be83df2646 100644
--- a/chrome/browser/resources/local_ntp/local_ntp.js
+++ b/chrome/browser/resources/local_ntp/local_ntp.js
@@ -770,7 +770,7 @@ function init() {
document.querySelector('#ntp-contents').classList.add(NTP_DESIGN.mainClass);
// Hide notifications after fade out, so we can't focus on links via keyboard.
- notification.addEventListener('webkitTransitionEnd', hideNotification);
+ notification.addEventListener('transitionend', hideNotification);
var notificationMessage = $(IDS.NOTIFICATION_MESSAGE);
notificationMessage.textContent =

Powered by Google App Engine
This is Rietveld 408576698