summaryrefslogtreecommitdiffstats
path: root/tests/auto/core/origins/resources/createObjectURL.html
blob: 133f636bb2ddf00d577073c413fa782cdb8ac24d (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
    <head>
        <title>createObjectURL</title>
        <script>
         const blob = new Blob(['foo']);
         const result = URL.createObjectURL(blob);
        </script>
    </head>
    <body></body>
</html>