| 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="datetime-local" value="2012-10-09T12:34:56"> | 7 <input id="test" type="datetime-local" value="2012-10-09T12:34:56"> |
| 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 var testInput = document.getElementById('test'); | 11 var testInput = document.getElementById('test'); |
| 12 | 12 |
| 13 if (!window.accessibilityController || !window.eventSender) | 13 if (!window.accessibilityController || !window.eventSender) |
| 14 debug('Please run inside DRT or WRT.'); | 14 debug('Please run inside DRT or WRT.'); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 window.setTimeout(function() { | 32 window.setTimeout(function() { |
| 33 debug(''); | 33 debug(''); |
| 34 testInput.parentNode.removeChild(testInput); | 34 testInput.parentNode.removeChild(testInput); |
| 35 finishJSTest(); | 35 finishJSTest(); |
| 36 }, 1); | 36 }, 1); |
| 37 } | 37 } |
| 38 </script> | 38 </script> |
| 39 </body> | 39 </body> |
| 40 </html> | 40 </html> |
| OLD | NEW |