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

Unified Diff: chrome/browser/resources/chromeos/login/screen_app_launch_splash.js

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only 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
Index: chrome/browser/resources/chromeos/login/screen_app_launch_splash.js
diff --git a/chrome/browser/resources/chromeos/login/screen_app_launch_splash.js b/chrome/browser/resources/chromeos/login/screen_app_launch_splash.js
index 6d01722e43d7dbe7e0446553d93fedf6d3ecb1f6..7a0b6c76ae58ea65def609866430ff9805141396 100644
--- a/chrome/browser/resources/chromeos/login/screen_app_launch_splash.js
+++ b/chrome/browser/resources/chromeos/login/screen_app_launch_splash.js
@@ -22,17 +22,17 @@ login.createScreen('AppLaunchSplashScreen', 'app-launch-splash', function() {
var networkContainer = $('splash-config-network-container');
networkContainer.addEventListener(
- 'webkitTransitionEnd',
+ 'transitionend',
function(e) {
if (this.classList.contains('faded'))
$('splash-config-network').hidden = true;
}.bind(networkContainer)
);
- // Ensure the webkitTransitionEnd event gets called after a wait time.
+ // Ensure the transitionend event gets called after a wait time.
// The wait time should be inline with the transition duration time
// defined in css file. The current value in css is 1000ms. To avoid
- // the emulated webkitTransitionEnd firing before real one, a 1050ms
+ // the emulated transitionend firing before real one, a 1050ms
// delay is used.
ensureTransitionEndEvent(networkContainer, 1050);
},

Powered by Google App Engine
This is Rietveld 408576698