summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/import-maps/csp/unsafe-inline.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/import-maps/csp/unsafe-inline.html')
-rw-r--r--testing/web-platform/tests/import-maps/csp/unsafe-inline.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/import-maps/csp/unsafe-inline.html b/testing/web-platform/tests/import-maps/csp/unsafe-inline.html
new file mode 100644
index 0000000000..101c33cf84
--- /dev/null
+++ b/testing/web-platform/tests/import-maps/csp/unsafe-inline.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';">
+<script type="importmap">
+{
+ "imports": {
+ "../resources/log.js?pipe=sub&name=A": "../resources/log.js?pipe=sub&name=B"
+ }
+}
+</script>
+<script>
+const log = [];
+promise_test(() => {
+ return import("../resources/log.js?pipe=sub&name=A")
+ .then(() => assert_array_equals(log, ["log:B"]))
+ },
+ 'Importmap should be accepted due to unsafe-inline');
+</script>