Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / accessibility / link-inside-button-accessible-text.html
blob27d94cde035a45a89f98414e2a6b292072bec2f5
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">
7 <div id="content">
8 <div role="button" id="button1">
9 <a href="#">foo1</a>
10 </div>
11 <button id="button2">
12 <a href="#">foo2</a>
13 </button>
14 </div>
15 <div id="console"></div>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
20 description("This tests that when a link is inside a button, its visible text is still available for the button.");
21 if (window.accessibilityController) {
22 var button1 = accessibilityController.accessibleElementById("button1");
23 shouldBe("button1.deprecatedTitle", "'AXTitle: foo1'");
24 var button2 = accessibilityController.accessibleElementById("button2");
25 shouldBe("button2.deprecatedTitle", "'AXTitle: foo2'");
26 document.getElementById("content").style.visibility = 'hidden';
28 </script>
29 </body>
30 </html>