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

Side by Side Diff: LayoutTests/accessibility/selection-states.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 </head> 4 </head>
5 5
6 <body id="body"> 6 <body id="body">
7 7
8 <select id="selectElement" multiple title="selectElement"> 8 <select id="selectElement" multiple title="selectElement">
9 <option SELECTED>Option 1</option> 9 <option SELECTED>Option 1</option>
10 <option>Option 2</option> 10 <option>Option 2</option>
11 <option DISABLED>Option 3</option> 11 <option DISABLED>Option 3</option>
12 </select> 12 </select>
13 13
(...skipping 15 matching lines...) Expand all
29 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(0).isS electable'); 29 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(0).isS electable');
30 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(0).isS elected'); 30 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(0).isS elected');
31 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(1).isS electable'); 31 shouldBeTrue('accessibilityController.focusedElement.childAtIndex(1).isS electable');
32 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(1).is Selected'); 32 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(1).is Selected');
33 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(2).is Selectable'); 33 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(2).is Selectable');
34 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(2).is Selected'); 34 shouldBeFalse('accessibilityController.focusedElement.childAtIndex(2).is Selected');
35 } 35 }
36 </script> 36 </script>
37 </body> 37 </body>
38 </html> 38 </html>
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/scroll-to-make-visible-with-subfocus.html ('k') | LayoutTests/accessibility/spinbutton-value.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698