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

Side by Side Diff: LayoutTests/fast/forms/week-multiple-fields/week-multiple-fields-ax-aria-attributes.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <input id="test" type="week" value="2012-W10"> 7 <input id="test" type="week" value="2012-W10">
8 <script> 8 <script>
9 description('This test checks aria-help attribute of fields in multiple fields w eek input UI.'); 9 description('This test checks aria-help attribute of fields in multiple fields w eek input UI.');
10 10
11 function focusedFieldValueDescription() 11 function focusedFieldValueDescription()
12 { 12 {
13 var element = accessibilityController.focusedElement; 13 var element = accessibilityController.focusedElement;
14 return element.helpText + ', ' + element.valueDescription + ', ' + element. minValue + ', ' + element.maxValue; 14 return element.helpText + ', ' + element.valueDescription + ', ' + element. minValue + ', ' + element.maxValue;
(...skipping 16 matching lines...) Expand all
31 eventSender.keyDown('\t', ['shiftKey']); 31 eventSender.keyDown('\t', ['shiftKey']);
32 eventSender.keyDown('\b'); 32 eventSender.keyDown('\b');
33 shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Week, AXVal ueDescription: blank, 1, 53'); 33 shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Week, AXVal ueDescription: blank, 1, 53');
34 34
35 debug(''); 35 debug('');
36 testInput.remove(); 36 testInput.remove();
37 } 37 }
38 </script> 38 </script>
39 </body> 39 </body>
40 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698