OLD | NEW |
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="../../../fast/js/resources/js-test-pre.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 |
(...skipping 18 matching lines...) Expand all Loading... |
29 eventSender.keyDown('\b'); | 29 eventSender.keyDown('\b'); |
30 shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Year, AXVal
ueDescription: blank, 1, 275760'); | 30 shouldBeEqualToString('focusedFieldValueDescription()', 'AXHelp: Year, AXVal
ueDescription: blank, 1, 275760'); |
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 <script src="../../../fast/js/resources/js-test-post.js"></script> | |
40 </body> | 39 </body> |
41 </html> | 40 </html> |
OLD | NEW |