Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <script src="../../../resources/js-test.js"></script> | |
| 2 <script> | |
| 3 description("Test basic module execution."); | |
| 4 </script> | |
| 5 <script type="module"> | |
| 6 debug("Module scripts should be executed..."); | |
| 7 </script> | |
| 8 <script type="module" language="nonsense"> | |
| 9 debug("...and should ignore any 'language' attribute"); | |
| 10 </script> | |
| 11 | |
| OLD | NEW |