summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_script_module_frames_import_save.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/file_script_module_frames_import_save.html')
-rw-r--r--dom/base/test/file_script_module_frames_import_save.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/dom/base/test/file_script_module_frames_import_save.html b/dom/base/test/file_script_module_frames_import_save.html
new file mode 100644
index 0000000000..4949de345f
--- /dev/null
+++ b/dom/base/test/file_script_module_frames_import_save.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>Test module script bytecode across iframe</title>
+</head>
+<body>
+ <script type="text/javascript" src="file_script_module_frames_relay.js"></script>
+ <script type="text/javascript">
+// Dynamically insert the script element so that the load doesn't happen
+// before the event relay handler is set up.
+const script = document.createElement("script");
+script.id = "watchme";
+script.setAttribute("type", "module");
+script.setAttribute("src", "file_script_module_frames_import_save.mjs");
+document.body.appendChild(script);
+ </script>
+</body>
+</html>