diff options
Diffstat (limited to 'dom/tests/mochitest/script/bug1656248_frame.html')
-rw-r--r-- | dom/tests/mochitest/script/bug1656248_frame.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dom/tests/mochitest/script/bug1656248_frame.html b/dom/tests/mochitest/script/bug1656248_frame.html new file mode 100644 index 0000000000..9030b4cbcf --- /dev/null +++ b/dom/tests/mochitest/script/bug1656248_frame.html @@ -0,0 +1,11 @@ +<html> + <head> + </head> + <body> + <script type="text/javascript"> +const script = document.createElement("script"); +script.setAttribute("src", "./subdir/bug1656248_script.js"); +document.body.appendChild(script); + </script> + </body> +</html> |