| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <div id="container"> | 7 <div id="container"> |
| 8 <input autofocus id="test" type="time" value="12:34"> | 8 <input autofocus id="test" type="time" value="12:34"> |
| 9 </div> | 9 </div> |
| 10 <script> | 10 <script> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 logs.push('start-focus'); | 22 logs.push('start-focus'); |
| 23 testInput.focus(); | 23 testInput.focus(); |
| 24 logs.push('end-focus'); | 24 logs.push('end-focus'); |
| 25 shouldBeEqualToString('logs.toString()', 'start-adoptNode,blur,end-adoptNode,sta
rt-focus,end-focus'); | 25 shouldBeEqualToString('logs.toString()', 'start-adoptNode,blur,end-adoptNode,sta
rt-focus,end-focus'); |
| 26 debug(''); | 26 debug(''); |
| 27 document.body.removeChild(container); | 27 document.body.removeChild(container); |
| 28 </script> | 28 </script> |
| 29 <script src="../../js/resources/js-test-post.js"></script> | 29 <script src="../../js/resources/js-test-post.js"></script> |
| 30 </body> | 30 </body> |
| 31 </html> | 31 </html> |
| OLD | NEW |