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

Unified Diff: ui/login/account_picker/user_pod_row.js

Issue 1569333002: Complete removal of MouseEvent prefixed webkitMovementX/Y. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | « third_party/WebKit/Source/core/frame/UseCounter.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/login/account_picker/user_pod_row.js
diff --git a/ui/login/account_picker/user_pod_row.js b/ui/login/account_picker/user_pod_row.js
index 8672327337d1dc35a80726950a77d9cbcd997b7f..c36496d08a4a503ebf0f7d286d8951430160ce45 100644
--- a/ui/login/account_picker/user_pod_row.js
+++ b/ui/login/account_picker/user_pod_row.js
@@ -3114,7 +3114,7 @@ cr.define('login', function() {
handleMouseMove_: function(e) {
if (this.disabled)
return;
- if (e.webkitMovementX == 0 && e.webkitMovementY == 0)
+ if (e.movementX == 0 && e.movementY == 0)
return;
// Defocus (thus hide) action box, if it is focused on a user pod
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698