summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/document.open-03-frame.html
blob: a4b370cea41fb2d379b0350639aaeec4f169191d (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, true, "setTimeout");
  parent.report(window === this, true, "this");
  parent.done();
}
</script>