mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 19:59:17 +00:00
19 lines
407 B
HTML
19 lines
407 B
HTML
<img id="testImg">
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const img = document.getElementById('testImg');
|
|
|
|
println(`loading = ${img.loading}`);
|
|
println('');
|
|
|
|
img.loading = 'lazy';
|
|
|
|
println(`loading = ${img.loading}`);
|
|
println('');
|
|
|
|
img.loading = 'invalid-value';
|
|
println(`loading = ${img.loading}`);
|
|
});
|
|
</script>
|