Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / accessibility / aria-presentational-role.html
blobfa02d05993a25586815e24eabf8b1e99b0dfbd0b
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../resources/js-test.js"></script>
5 </head>
6 <body id="body">
8 <h3 role="presentation">
9 <a href="#">Link</a> and text
10 </h3>
12 <p id="description"></p>
13 <div id="console"></div>
15 <script>
17 description("This tests that the aria 'presentation' role works by successfully removing the element from the AX tree.");
19 if (window.accessibilityController) {
21 var body = document.getElementById("body");
22 body.focus();
24 var firstChild = accessibilityController.focusedElement.childAtIndex(0);
25 shouldBe("firstChild.role", "'AXRole: AXLink'");
28 </script>
30 </body>
31 </html>