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

Side by Side Diff: LayoutTests/accessibility/multiselect-list-reports-active-option.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../fast/js/resources/js-test-pre.js"></script> 3 <script src="../resources/js-test.js"></script>
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
7 7
8 function runTest() { 8 function runTest() {
9 description("This tests that navigating in a multiselect list updates se lection and the active selected option and sends a notification."); 9 description("This tests that navigating in a multiselect list updates se lection and the active selected option and sends a notification.");
10 10
11 if (window.accessibilityController) { 11 if (window.accessibilityController) {
12 var menulist = document.getElementById("menulist"); 12 var menulist = document.getElementById("menulist");
13 menulist.focus(); 13 menulist.focus();
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 <option>Two</option> 75 <option>Two</option>
76 <option>Three</option> 76 <option>Three</option>
77 <option>Four</option> 77 <option>Four</option>
78 </select> 78 </select>
79 79
80 <p id="description"></p> 80 <p id="description"></p>
81 <div id="console"></div> 81 <div id="console"></div>
82 82
83 </body> 83 </body>
84 </html> 84 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698