| OLD | NEW |
| 1 <html> | 1 <!-- NOTE: Test is being migrated (see crbug.com/667560) !--><html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="../../http/tests/inspector/console-test.js"></script> | 4 <script src="../../http/tests/inspector/console-test.js"></script> |
| 5 <script> | 5 <script> |
| 6 | 6 |
| 7 var globals = []; | 7 var globals = []; |
| 8 | 8 |
| 9 function log(current) | 9 function log(current) |
| 10 { | 10 { |
| 11 console.log(globals[current]); | 11 console.log(globals[current]); |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 } | 76 } |
| 77 </script> | 77 </script> |
| 78 </head> | 78 </head> |
| 79 | 79 |
| 80 <body onload="onload()"> | 80 <body onload="onload()"> |
| 81 <p> | 81 <p> |
| 82 Tests that console properly displays information about ES6 features. | 82 Tests that console properly displays information about ES6 features. |
| 83 </p> | 83 </p> |
| 84 </body> | 84 </body> |
| 85 </html> | 85 </html> |
| OLD | NEW |