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

Unified Diff: chrome/test/data/extensions/api_test/automation/tests/desktop/actions.js

Issue 1705853002: NOT FOR REVIEW. ax tree focus with debugging (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed crash Created 4 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/test/data/extensions/api_test/automation/tests/desktop/actions.js
diff --git a/chrome/test/data/extensions/api_test/automation/tests/desktop/actions.js b/chrome/test/data/extensions/api_test/automation/tests/desktop/actions.js
index 70a30c66b262eac6777aa3307691a5fe40eeb59f..8b2f8df5d52d77430a614a1b112806379074250c 100644
--- a/chrome/test/data/extensions/api_test/automation/tests/desktop/actions.js
+++ b/chrome/test/data/extensions/api_test/automation/tests/desktop/actions.js
@@ -15,18 +15,6 @@ var allTests = [
firstTextField.doDefault();
},
- function testFocus() {
- var firstFocusableNode = findAutomationNode(rootNode,
- function(node) {
- return node.role == 'button' && node.state.focusable;
- });
- assertTrue(!!firstFocusableNode);
- listenOnce(firstFocusableNode, EventType.focus, function(e) {
- chrome.test.succeed();
- }, true);
- firstFocusableNode.focus();
- },
-
function testDoDefaultViews() {
listenOnce(rootNode, 'focus', function(node) {
chrome.test.succeed();

Powered by Google App Engine
This is Rietveld 408576698