blob: fbcadd86c99c3f3666bbe7822b04236db148002f [file] [log] [blame]
<!DOCTYPE html>
<head>
<title>Images with loading='lazy' in script disabled iframe are not handled
as 'lazy'</title>
<link rel="help" href="https://github.com/scott-little/lazyload">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<div style="height:1000vh;"></div>
<iframe id="iframe" sandbox="allow-same-origin"
src="resources/image-loading-lazy-in-viewport.html">
</iframe>
<script>
promise_test(async t => {
await new Promise(resolve => iframe.addEventListener("load", resolve));
const image = iframe.contentDocument.querySelector("img");
assert_true(image.complete,
"lazy-load image shouldn't be honored in script disabled iframe");
});
</script>