blob: 63755113915f9f59eec9d292fc04422e7d219f90 [file] [log] [blame]
<!DOCTYPE html>
<script>
const blob = new Blob(["Test Blob"]);
const url = URL.createObjectURL(blob);
window.parent.postMessage({url: url}, '*');
</script>