Sign in
chromium
/
external
/
w3c
/
web-platform-tests.git
/
HEAD
/
.
/
FileAPI
/
support
/
url-origin.html
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>