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

Side by Side Diff: chrome/test/data/extensions/api_test/automation/tests/desktop/desktop.js

Issue 304293002: Add human readable programmatic enum name/values to chrome.automation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Last feedback. Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 var allTests = [ 5 var allTests = [
6 function testGetDesktop() { 6 function testGetDesktop() {
7 chrome.automation.getDesktop(function(tree) { 7 chrome.automation.getDesktop(function(tree) {
8 assertEq('desktop', tree.root.role); 8 assertEq(RoleType.desktop, tree.root.role);
9 assertEq('window', tree.root.firstChild().role); 9 assertEq(RoleType.window, tree.root.firstChild().role);
10 chrome.test.succeed(); 10 chrome.test.succeed();
11 }); 11 });
12 }, 12 },
13 13
14 function testGetDesktopTwice() { 14 function testGetDesktopTwice() {
15 var desktop = null; 15 var desktop = null;
16 chrome.automation.getDesktop(function(tree) { 16 chrome.automation.getDesktop(function(tree) {
17 desktop = tree; 17 desktop = tree;
18 }); 18 });
19 chrome.automation.getDesktop(function(tree) { 19 chrome.automation.getDesktop(function(tree) {
20 assertEq(tree, desktop); 20 assertEq(tree, desktop);
21 chrome.test.succeed(); 21 chrome.test.succeed();
22 }); 22 });
23 }, 23 },
24 24
25 function testGetDesktopNested() { 25 function testGetDesktopNested() {
26 var desktop = null; 26 var desktop = null;
27 chrome.automation.getDesktop(function(tree) { 27 chrome.automation.getDesktop(function(tree) {
28 desktop = tree; 28 desktop = tree;
29 chrome.automation.getDesktop(function(tree2) { 29 chrome.automation.getDesktop(function(tree2) {
30 assertEq(tree2, desktop); 30 assertEq(tree2, desktop);
31 chrome.test.succeed(); 31 chrome.test.succeed();
32 }); 32 });
33 }); 33 });
34 } 34 }
35 ]; 35 ];
36 36
37 chrome.test.runTests(allTests); 37 chrome.test.runTests(allTests);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698