| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <script src="../../resources/js-test-pre.js"></script> |
| <div id="item1" class="test test2">content</div> |
| description("This tests that the DOM id and the DOM class list can be retrieved"); |
| if (window.accessibilityController) { |
| var item = accessibilityController.accessibleElementById("item1"); |
| shouldBeTrue("item.isAttributeSupported('AXDOMIdentifier')"); |
| shouldBe("item.stringAttributeValue('AXDOMIdentifier')", "'item1'"); |
| shouldBeTrue("item.isAttributeSupported('AXDOMClassList')"); |
| shouldBe("item.classList", "'test, test2'"); |
| <script src="../../resources/js-test-post.js"></script> |