| 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 <script src="../resources/multiple-fields-ax-aria-attributes.js"></script> | 5 <script src="../resources/multiple-fields-ax-aria-attributes.js"></script> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 <input id="test" type="date"> | 8 <input id="test" type="date"> |
| 9 <script> | 9 <script> |
| 10 description('This test checks aria-help attribute of fields in multiple fields d
ate input UI.'); | 10 description('This test checks aria-help attribute of fields in multiple fields d
ate input UI.'); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 eventSender.keyDown('\b'); | 39 eventSender.keyDown('\b'); |
| 40 checkFocusedElementAXAttributes('AXHelp: Day, AXValueDescription: blank, int
Value:0, range:1-31'); | 40 checkFocusedElementAXAttributes('AXHelp: Day, AXValueDescription: blank, int
Value:0, range:1-31'); |
| 41 eventSender.keyDown('\t', ['shiftKey']); | 41 eventSender.keyDown('\t', ['shiftKey']); |
| 42 eventSender.keyDown('\b'); | 42 eventSender.keyDown('\b'); |
| 43 checkFocusedElementAXAttributes('AXHelp: Month, AXValueDescription: blank, i
ntValue:0, range:1-12'); | 43 checkFocusedElementAXAttributes('AXHelp: Month, AXValueDescription: blank, i
ntValue:0, range:1-12'); |
| 44 | 44 |
| 45 debug(''); | 45 debug(''); |
| 46 testInput.parentNode.removeChild(testInput); | 46 testInput.parentNode.removeChild(testInput); |
| 47 } | 47 } |
| 48 </script> | 48 </script> |
| 49 <script src="../../../fast/js/resources/js-test-post.js"></script> | |
| 50 </body> | 49 </body> |
| 51 </html> | 50 </html> |
| OLD | NEW |