| 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="../../../resources/js-test.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <input id=test type="time" value="12:34:56.789"> | 7 <input id=test type="time" value="12:34:56.789"> |
| 8 <script> | 8 <script> |
| 9 description('This test checks value changed accessibility notifications.'); | 9 description('This test checks value changed accessibility notifications.'); |
| 10 | 10 |
| 11 function enableAccessibility() | 11 function enableAccessibility() |
| 12 { | 12 { |
| 13 if (!window.accessibilityController) { | 13 if (!window.accessibilityController) { |
| 14 debug("Please run inside DumpRenderTree."); | 14 debug("Please run inside DumpRenderTree."); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 40 window.jsTestIsAsync = true; | 40 window.jsTestIsAsync = true; |
| 41 | 41 |
| 42 window.setTimeout(function () { | 42 window.setTimeout(function () { |
| 43 debug(''); | 43 debug(''); |
| 44 testInput.parentNode.removeChild(testInput); | 44 testInput.parentNode.removeChild(testInput); |
| 45 finishJSTest(); | 45 finishJSTest(); |
| 46 }, 1); | 46 }, 1); |
| 47 </script> | 47 </script> |
| 48 </body> | 48 </body> |
| 49 </html> | 49 </html> |
| OLD | NEW |