blob: 133f636bb2ddf00d577073c413fa782cdb8ac24d [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>createObjectURL</title>
<script>
const blob = new Blob(['foo']);
const result = URL.createObjectURL(blob);
</script>
</head>
<body></body>
</html>