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

Side by Side Diff: LayoutTests/accessibility/link-inside-button-accessible-text.html

Issue 829473004: When ARIA button contains a link, label text is ignored (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | LayoutTests/accessibility/link-inside-button-accessible-text-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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();
19
20 description("This tests that when a link is inside a button, its visible tex t is still available for the button.");
21 if (window.accessibilityController) {
22 var button1 = accessibilityController.accessibleElementById("button1") ;
23 shouldBe("button1.title", "'AXTitle: foo1'");
24 var button2 = accessibilityController.accessibleElementById("button2") ;
25 shouldBe("button2.title", "'AXTitle: foo2'");
26 document.getElementById("content").style.visibility = 'hidden';
27 }
28 </script>
29 </body>
30 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/accessibility/link-inside-button-accessible-text-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698