summaryrefslogtreecommitdiffstats
path: root/tests/auto/core/origins/resources/createObjectURL.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/core/origins/resources/createObjectURL.html')
-rw-r--r--tests/auto/core/origins/resources/createObjectURL.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/core/origins/resources/createObjectURL.html b/tests/auto/core/origins/resources/createObjectURL.html
new file mode 100644
index 000000000..133f636bb
--- /dev/null
+++ b/tests/auto/core/origins/resources/createObjectURL.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>createObjectURL</title>
+ <script>
+ const blob = new Blob(['foo']);
+ const result = URL.createObjectURL(blob);
+ </script>
+ </head>
+ <body></body>
+</html>