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

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

Issue 2787033002: Remove broken focusout listener for System Security Setting OOBE dialog (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/login/oobe_screen_eula.js
diff --git a/chrome/browser/resources/chromeos/login/oobe_screen_eula.js b/chrome/browser/resources/chromeos/login/oobe_screen_eula.js
index ba1a2b80552c41bce33b225822c32024e5cc41d2..c9dba9e41dc8215d21f9d57738c47a1ec4889d8c 100644
--- a/chrome/browser/resources/chromeos/login/oobe_screen_eula.js
+++ b/chrome/browser/resources/chromeos/login/oobe_screen_eula.js
@@ -27,15 +27,6 @@ login.createScreen('EulaScreen', 'eula', function() {
'click', function(event) {
$('popup-overlay').hidden = true;
});
- // Do not allow focus leaving the overlay.
- $('popup-overlay').addEventListener('focusout', function(event) {
- // WebKit does not allow immediate focus return.
- window.setTimeout(function() {
- // TODO(ivankr): focus cycling.
- $('installation-settings-ok-button').focus();
- }, 0);
- event.preventDefault();
- });
var self = this;
$('usage-stats').addEventListener('click', function(event) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698