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

Unified Diff: chrome/test/data/extensions/api_test/automation/tests/tabs/sanity_check.js

Issue 308003003: Allow requesting Automation tree by tabId (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 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/tabs/sanity_check.js
diff --git a/chrome/test/data/extensions/api_test/automation/tests/tabs/sanity_check.js b/chrome/test/data/extensions/api_test/automation/tests/tabs/sanity_check.js
index ff4ee3b584c85ff161913da34c2af70d912a01ae..73d5d2dc6b172325fd9524d8cb611adcbb4ef41c 100644
--- a/chrome/test/data/extensions/api_test/automation/tests/tabs/sanity_check.js
+++ b/chrome/test/data/extensions/api_test/automation/tests/tabs/sanity_check.js
@@ -20,13 +20,12 @@ var allTests = [
tree.root.state);
var children = tree.root.children();
assertEq(1, children.length);
-
var body = children[0];
assertEq('body', body.attributes.htmlTag);
RemoveUntestedStates(body.state);
assertEq({enabled: true, readOnly: true},
- body.state);
+ body.state);
var contentChildren = body.children();
assertEq(3, contentChildren.length);

Powered by Google App Engine
This is Rietveld 408576698