| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto
r-protocol-test.js"></script> | 3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto
r-protocol-test.js"></script> |
| 4 <script> | 4 <script> |
| 5 | 5 |
| 6 function load() | 6 function load() |
| 7 { | 7 { |
| 8 window.internals.setFocused(false); | 8 window.internals.setFocused(false); |
| 9 runTest(); | 9 runTest(); |
| 10 } | 10 } |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 </script> | 70 </script> |
| 71 </head> | 71 </head> |
| 72 <body onload="load()"> | 72 <body onload="load()"> |
| 73 <div id="inputs"> | 73 <div id="inputs"> |
| 74 <input onfocus="log('focus foo')" onblur="log('blur foo')" id="foo" autofocus> | 74 <input onfocus="log('focus foo')" onblur="log('blur foo')" id="foo" autofocus> |
| 75 <input onfocus="log('focus bar')" onblur="log('blur bar')" id="bar"> | 75 <input onfocus="log('focus bar')" onblur="log('blur bar')" id="bar"> |
| 76 <input onfocus="log('focus baz')" onblur="log('blur baz')" id="baz"> | 76 <input onfocus="log('focus baz')" onblur="log('blur baz')" id="baz"> |
| 77 </div> | 77 </div> |
| 78 </body> | 78 </body> |
| 79 </html> | 79 </html> |
| OLD | NEW |