Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<title>Navigating iframe loading='lazy' before it is loaded: link click (fragment)</title>
<iframe name="iframe" src="support/blank.htm?src" loading="lazy" hidden></iframe>
<a href="about:blank#fragment" target="iframe"></a>
<script>
const iframe = document.querySelector('iframe');
const iframeLoaded = new Promise(resolve => {
iframe.onload = resolve;
});
const a = document.querySelector('a');
a.click();
iframe.hidden = false;
</script>
<!-- Loading testharness.js here is intentional to reproduce a bug in WebKit. -->
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
setup({single_test: true});
iframeLoaded.then(() => {
// Need a timeout to detect failure when there are two navigations.
step_timeout(() => {
assert_equals(iframe.contentWindow.location.href, "about:blank#fragment");
done();
}, 1000);
});
</script>