| Index: third_party/WebKit/LayoutTests/fast/dom/HTMLScriptElement/module-script.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLScriptElement/module-script.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLScriptElement/module-script.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..959ffaa2fbe3965edcca354ae2e06f589f1ce521
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/HTMLScriptElement/module-script.html
|
| @@ -0,0 +1,11 @@
|
| +<script src="../../../resources/js-test.js"></script>
|
| +<script>
|
| +description("Test basic module execution.");
|
| +</script>
|
| +<script type="module">
|
| +debug("Module scripts should be executed...");
|
| +</script>
|
| +<script type="module" language="nonsense">
|
| +debug("...and should ignore any 'language' attribute");
|
| +</script>
|
| +
|
|
|