DOMParser-parseFromString-url-base-pushstate.html (536B)
1 <!doctype html> 2 <title>DOMParser test of how the document's URL is set (base, pushstate)</title> 3 <base href="/fake/base-from-outer-frame"> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 7 <iframe src="/domparsing/resources/domparser-iframe-base-pushstate.html" onload="window.resolveLoadPromise();"></iframe> 8 9 <script> 10 "use strict"; 11 history.pushState(null, "", "/fake/push-state-from-outer-frame"); 12 </script> 13 <script src="/domparsing/resources/domparser-url-tests.js"></script>