| 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 b4d743d68f90002817bbb7df88d8d2dc64329a99..3ff91b08f310da7a0cb3cd454b629c8d623aebf5 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
|
| @@ -19,7 +19,7 @@ var allTests = [
|
|
|
| var state = RemoveUntestedStates(rootNode.state);
|
| assertEq(
|
| - {enabled: true, focusable: true, readOnly: true, focused: true},
|
| + {focusable: true, readOnly: true, focused: true},
|
| state);
|
|
|
| var children = rootNode.children;
|
| @@ -28,23 +28,23 @@ var allTests = [
|
| var body = children[0];
|
| assertEq('body', body.htmlTag);
|
| state = RemoveUntestedStates(body.state);
|
| - assertEq({enabled: true, readOnly: true}, state);
|
| + assertEq({readOnly: true}, state);
|
|
|
| var contentChildren = body.children;
|
| assertEq(3, contentChildren.length);
|
| var okButton = contentChildren[0];
|
| assertEq('Ok', okButton.name);
|
| state = RemoveUntestedStates(okButton.state);
|
| - assertEq({enabled: true, focusable: true, readOnly: true}, state);
|
| + assertEq({focusable: true, readOnly: true}, state);
|
| var userNameInput = contentChildren[1];
|
| assertEq('Username', userNameInput.name);
|
| state = RemoveUntestedStates(userNameInput.state);
|
| - assertEq({editable: true, enabled: true, focusable: true}, state);
|
| + assertEq({editable: true, focusable: true}, state);
|
| var cancelButton = contentChildren[2];
|
| assertEq('Cancel',
|
| cancelButton.name);
|
| state = RemoveUntestedStates(cancelButton.state);
|
| - assertEq({enabled: true, focusable: true, readOnly: true}, state);
|
| + assertEq({focusable: true, readOnly: true}, state);
|
|
|
| // Traversal.
|
| assertEq(undefined, rootNode.parent);
|
|
|