blob: 84af0f6958c2586a135df44a8de1871b3ed45755 [file] [log] [blame]
<body>
<p>This test passes if the module script loads.</p>
<pre></pre>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
function done(msg) {
document.querySelector("pre").innerHTML = msg;
if (window.testRunner)
testRunner.notifyDone();
}
</script>
<script type="module">
// Executed with "omit".
// https://github.com/tc39/proposal-dynamic-import/blob/master/HTML%20Integration.md
import("http://localhost:8000/security/resources/cors-script.py?credentials=false").then(
function() { done("PASS");},
function() { done("FAIL"); });
</script>