forked from mykmelez/gecko
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1587902 [wpt PR 19632] - Scripts moved between documents, a=testonly
Automatic update from web-platform-tests Scripts moved between documents (#19632) This follows the changes in whatwg/html#2673, but also tests the issue at whatwg/html#2137 in favor of the current spec. Co-Authored-By: Domenic Denicola <d@domenic.me> -- wpt-commits: 299dd665683c2c5a4896bfb7727d8666aa6bba89 wpt-pr: 19632
- Loading branch information
1 parent
e41d517
commit b162bc3
Showing
54 changed files
with
1,113 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
...tml/semantics/scripting-1/the-script-element/moving-between-documents/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
The tests in this directory are for script elements moved between documents. | ||
|
||
Use | ||
|
||
``` | ||
$ tools/generate.py | ||
``` | ||
|
||
to generate test HTML files. | ||
|
||
Background: | ||
|
||
- https://www.w3.org/Bugs/Public/show_bug.cgi?id=11323 | ||
- https://github.com/whatwg/html/issues/2137 | ||
- https://github.com/whatwg/html/issues/2469 | ||
- https://github.com/whatwg/html/pull/2673 |
15 changes: 15 additions & 0 deletions
15
...ving-between-documents/after-prepare-createHTMLDocument-fetch-error-external-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "createHTMLDocument", "fetch-error", "external", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...oving-between-documents/after-prepare-createHTMLDocument-fetch-error-external-module.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "createHTMLDocument", "fetch-error", "external", "module"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...ving-between-documents/after-prepare-createHTMLDocument-parse-error-external-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "createHTMLDocument", "parse-error", "external", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...oving-between-documents/after-prepare-createHTMLDocument-parse-error-external-module.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "createHTMLDocument", "parse-error", "external", "module"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...t/moving-between-documents/after-prepare-createHTMLDocument-success-external-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "createHTMLDocument", "success", "external", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...nt/moving-between-documents/after-prepare-createHTMLDocument-success-external-module.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "createHTMLDocument", "success", "external", "module"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...t-element/moving-between-documents/after-prepare-iframe-fetch-error-external-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "iframe", "fetch-error", "external", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...pt-element/moving-between-documents/after-prepare-iframe-fetch-error-external-module.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "iframe", "fetch-error", "external", "module"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...t-element/moving-between-documents/after-prepare-iframe-parse-error-external-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "iframe", "parse-error", "external", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...pt-element/moving-between-documents/after-prepare-iframe-parse-error-external-module.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "iframe", "parse-error", "external", "module"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...ipt-element/moving-between-documents/after-prepare-iframe-parse-error-inline-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "iframe", "parse-error", "inline", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...cript-element/moving-between-documents/after-prepare-iframe-success-external-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "iframe", "success", "external", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...script-element/moving-between-documents/after-prepare-iframe-success-external-module.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "iframe", "success", "external", "module"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...-script-element/moving-between-documents/after-prepare-iframe-success-inline-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("after-prepare", "iframe", "success", "inline", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...ing-between-documents/before-prepare-createHTMLDocument-fetch-error-external-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("before-prepare", "createHTMLDocument", "fetch-error", "external", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...ving-between-documents/before-prepare-createHTMLDocument-fetch-error-external-module.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("before-prepare", "createHTMLDocument", "fetch-error", "external", "module"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...ing-between-documents/before-prepare-createHTMLDocument-parse-error-external-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("before-prepare", "createHTMLDocument", "parse-error", "external", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...ving-between-documents/before-prepare-createHTMLDocument-parse-error-external-module.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("before-prepare", "createHTMLDocument", "parse-error", "external", "module"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...oving-between-documents/before-prepare-createHTMLDocument-parse-error-inline-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("before-prepare", "createHTMLDocument", "parse-error", "inline", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...moving-between-documents/before-prepare-createHTMLDocument-parse-error-inline-module.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("before-prepare", "createHTMLDocument", "parse-error", "inline", "module"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
.../moving-between-documents/before-prepare-createHTMLDocument-success-external-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("before-prepare", "createHTMLDocument", "success", "external", "classic"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...t/moving-between-documents/before-prepare-createHTMLDocument-success-external-module.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("before-prepare", "createHTMLDocument", "success", "external", "module"); | ||
</script> |
15 changes: 15 additions & 0 deletions
15
...nt/moving-between-documents/before-prepare-createHTMLDocument-success-inline-classic.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<meta name="timeout" content="long"> | ||
<title>Moving script elements between documents</title> | ||
<!-- This is generated by tools/generate.py. Do not manually edit. --> | ||
<link rel="author" href="mailto:d@domenic.me" title="Domenic Denicola"> | ||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#execute-the-script-block"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<script src="resources/moving-between-documents-helper.js"></script> | ||
|
||
<body> | ||
<script> | ||
runTest("before-prepare", "createHTMLDocument", "success", "inline", "classic"); | ||
</script> |
Oops, something went wrong.