summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/FileAPI/support/url-origin.html
blob: 63755113915f9f59eec9d292fc04422e7d219f90 (plain)
1
2
3
4
5
6
<!DOCTYPE html>
<script>
const blob = new Blob(["Test Blob"]);
const url = URL.createObjectURL(blob);
window.parent.postMessage({url: url}, '*');
</script>