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

Unified Diff: chrome/browser/resources/chromeos/switch_access/testable_switch_access.js

Issue 2748853002: Added unit tests for switch_access.js. (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
Index: chrome/browser/resources/chromeos/switch_access/testable_switch_access.js
diff --git a/chrome/browser/resources/chromeos/switch_access/testable_switch_access.js b/chrome/browser/resources/chromeos/switch_access/testable_switch_access.js
new file mode 100644
index 0000000000000000000000000000000000000000..837770341934d0c9dea928ab53cddd7e707caa17
--- /dev/null
+++ b/chrome/browser/resources/chromeos/switch_access/testable_switch_access.js
@@ -0,0 +1,30 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * Subclass of SwitchAccess that exposes SwitchAccess's methods for testing.
+ */
+let TestableSwitchAccess = function() {
+ SwitchAccess.call(this);
+};
+
+TestableSwitchAccess.prototype = {
+ __proto__: SwitchAccess.prototype,
+
+ getNextNode: function(node) {
+ return this.getNextNode_(node);
+ },
+
+ getPreviousNode: function(node) {
+ return this.getPreviousNode_(node);
+ },
+
+ getYoungestDescendant: function(node) {
+ return this.getYoungestDescendant_(node);
+ },
+
+ isInteresting: function(node) {
+ return this.isInteresting_(node);
+ }
+};

Powered by Google App Engine
This is Rietveld 408576698