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