summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/013-1.html
blob: ea321238ed5892b9e7a8ba7d665450e34850242f (plain)
1
2
3
4
5
6
7
<script>
addEventListener("DOMContentLoaded", parent.t.step_func(function() {
  parent.assert_equals(document.open(), document);
  setTimeout(parent.t.step_func(function() {parent.t.done()}), 0);
  document.close();
}), false);
</script>