Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: docshell/base/crashtests/crashtests.list
<iframe id="ifr" src="/foo"></iframe>
<script>
if (!location.hash) {
setTimeout(() => {
try {
ifr.contentWindow.history.pushState(null, "");
} catch(e) {}
location.hash = "reloaded";
location.reload();
}, 0);
}
</script>