summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/history/the-location-interface/reload_document_write_onload-1.html
blob: 36445af3c82ad24f60d5981aa4b21f5c5f0b9d69 (plain)
1
2
3
4
5
6
7
8
9
<script>
function f() {
  opener.postMessage("original", "*");
  document.write("<!doctype html>2<script>opener.postMessage('written', '*');<\/script>");
  document.close();
}

window.onload = f
</script>