summaryrefslogtreecommitdiffstats
path: root/docshell/test/navigation/file_bug1745638.html
blob: b98c8de91fc00f42d27be9b7f976adc73c1b79eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<script>
  function go() {
      var doc = document.getElementById("testFrame").contentWindow.document;
      doc.open();
      doc.close();
      doc.body.innerText = "passed";
  }
</script>
<body onload="setTimeout(opener.pageLoaded);">
The iframe below should not be blank after a reload.<br>
<iframe src="about:blank" id="testFrame"></iframe>
<script>
  go();
</script>