mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
19 lines
441 B
HTML
19 lines
441 B
HTML
<iframe id="testFrame"></iframe>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const iframe = document.getElementById('testFrame');
|
|
|
|
println(`loading = ${iframe.loading}`);
|
|
println('');
|
|
|
|
iframe.loading = 'lazy';
|
|
|
|
println(`loading = ${iframe.loading}`);
|
|
println('');
|
|
|
|
iframe.loading = 'invalid-value';
|
|
println(`loading = ${iframe.loading}`);
|
|
});
|
|
</script>
|