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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/focus_util.js

Issue 2943193002: Run clang-format on .js files in c/b/r/chromeos/chromevox (Closed)
Patch Set: Created 3 years, 6 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/chromevox/common/focus_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/focus_util.js b/chrome/browser/resources/chromeos/chromevox/common/focus_util.js
index 4c00595a954edf97d8ec63c40106925ccc283005..f5438344048423e67cf7a2081c36da118208be80 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/focus_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/focus_util.js
@@ -15,8 +15,7 @@ goog.provide('cvox.FocusUtil');
* Utilities for managing focus.
* @constructor
*/
-cvox.FocusUtil = function() {
-};
+cvox.FocusUtil = function() {};
/**
* Maps whether an input element of specified type accepts text selection or
@@ -31,29 +30,29 @@ cvox.FocusUtil = function() {
* @type {Object}
*/
cvox.FocusUtil.INPUT_TYPE_ACCEPTS_SELECTION_TABLE = {
- 'hidden' : false,
- 'text' : true,
- 'search' : true,
- 'tel' : true,
- 'url' : true,
- 'email' : true,
- 'password' : true,
- 'datetime' : false,
- 'date' : false,
- 'month' : false,
- 'week' : false,
- 'time' : false,
- 'datetime-local' : false,
- 'number' : false,
- 'range' : false,
- 'color' : false,
- 'checkbox' : false,
- 'radio' : false,
- 'file' : false,
- 'submit' : false,
- 'image' : false,
- 'reset' : false,
- 'button' : false
+ 'hidden': false,
+ 'text': true,
+ 'search': true,
+ 'tel': true,
+ 'url': true,
+ 'email': true,
+ 'password': true,
+ 'datetime': false,
+ 'date': false,
+ 'month': false,
+ 'week': false,
+ 'time': false,
+ 'datetime-local': false,
+ 'number': false,
+ 'range': false,
+ 'color': false,
+ 'checkbox': false,
+ 'radio': false,
+ 'file': false,
+ 'submit': false,
+ 'image': false,
+ 'reset': false,
+ 'button': false
};
/**

Powered by Google App Engine
This is Rietveld 408576698