summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/dynamic-markup-insertion/opening-the-input-stream/resources/url-frame.html
blob: be483ff0aea456c3bc7f2e62d863e7f981453203 (plain)
1
2
3
4
5
6
7
8
9
<script>
onload = () => {
  const beforeURL = document.URL;
  document.open();
  const afterURL = document.URL;
  document.close();
  parent.testDone(beforeURL, afterURL);
}
</script>