| 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="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 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 window.jsTestIsAsync = true; | 30 window.jsTestIsAsync = true; |
| 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 <script src="../../../fast/js/resources/js-test-post.js"></script> | |
| 40 </body> | 39 </body> |
| 41 </html> | 40 </html> |
| OLD | NEW |