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

Side by Side Diff: LayoutTests/accessibility/aria-activedescendant-crash.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4 function test()
5 {
6 if (window.testRunner)
7 testRunner.dumpAsText();
8 document.getElementById('bt').focus();
9 if (window.accessibilityController)
10 var test = accessibilityController.focusedElement.stringAttr ibuteValue("aria-activedescendant");
11 document.getElementById('bt').click();
12 }
13 </script>
14 </head>
15 <body onload="test()">
16 This tests that there is no crash if you set an aria-activedescendant at tribute to an id of an element that has no renderer.<br>
17 <input type="button" id="bt" onclick="this.setAttribute('aria-activedesc endant', 'hiddenElement')" value="Use VoiceOver to activate this button, and the n navigate to the next element">
18 <div id="hiddenElement" style="display:none"></div>
19 </body>
20 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/accessibility/aria-activedescendant-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698