mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 11:48:32 +00: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>
|