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

<iframe src="/domparsing/resources/domparser-iframe-base-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>