summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/dynamic-markup-insertion/opening-the-input-stream/document.open-03-frame.html
blob: b5252dceab6b63bed93f4c0f6fd23d61097fe7a4 (plain)
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<script>
onload = function() {
  document.open();
  document.close();
  parent.report(window.setTimeout === setTimeout, false, "setTimeout");
  parent.report(window === this, true, "this");
  parent.done();
}
</script>