• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!DOCTYPE html>
2<script>
3const blob = new Blob(["Test Blob"]);
4const url = URL.createObjectURL(blob);
5window.parent.postMessage({url: url}, '*');
6</script>
7