| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 | 4 |
| 5 var logDiv; | 5 var logDiv; |
| 6 | 6 |
| 7 function log(msg, success) | 7 function log(msg, success) |
| 8 { | 8 { |
| 9 logDiv.appendChild(document.createElement('div')).textContent = msg + ': ' +
(success ? 'PASS' : 'FAIL'); | 9 logDiv.appendChild(document.createElement('div')).textContent = msg + ': ' +
(success ? 'PASS' : 'FAIL'); |
| 10 } | 10 } |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 log('Input event should fire once per actual input', count == 1); | 34 log('Input event should fire once per actual input', count == 1); |
| 35 } | 35 } |
| 36 | 36 |
| 37 </script> | 37 </script> |
| 38 </head> | 38 </head> |
| 39 <body onload="runTest()"> | 39 <body onload="runTest()"> |
| 40 <input> | 40 <input> |
| 41 <div id="log"></div> | 41 <div id="log"></div> |
| 42 </body> | 42 </body> |
| 43 </html> | 43 </html> |
| OLD | NEW |