PR-URL: https://github.com/nodejs/node/pull/36811 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
6 lines
156 B
HTML
6 lines
156 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
const blob = new Blob(["Test Blob"]);
|
|
const url = URL.createObjectURL(blob);
|
|
window.parent.postMessage({url: url}, '*');
|
|
</script>
|