summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/domparsing/DOMParser-parseFromString-url-pushstate.html
blob: ecb89bc7412817102980daf4fb1f953223ca68b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<title>DOMParser test of how the document's URL is set (no base, pushstate)</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<iframe src="/domparsing/resources/domparser-iframe-pushstate.html" onload="window.resolveLoadPromise();"></iframe>

<script>
"use strict";
history.pushState(null, "", "/fake/push-state-from-outer-frame");
</script>
<script src="/domparsing/resources/domparser-url-tests.js"></script>