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