summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/json-module-assertions/crossorigin-import-without-cors.sub.html
blob: 9d07d6c727c407ee6f301528d4b9f00c5bed0dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
    <title>json-module-assertions-import-cross-domain-NoCORS</title>
    <script src="../module/crossorigin-common.js"></script>
</head>
<body>
    <h1>json-module-assertions-import-cross-domain-NoCORS</h1>
    <script type="module" onerror="document._log.push('error');">
        import json from "http://{{domains[www2]}}:{{ports[http][0]}}/html/semantics/scripting-1/the-script-element/json-module-assertions/data.json" assert { type: "json" };
        // Push an event to the log indicating that the script was executed.
        document._log.push(`imported JSON: ${json.answer}`);
    </script>
</body>
</html>