mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 09:27:00 +02:00
The layout node is only accessed to clear the cached alt value, so the layout tree doesn't need to be up to date in this case.
8 lines
177 B
HTML
8 lines
177 B
HTML
<!DOCTYPE html>
|
|
<input type="image" alt="old">
|
|
<script>
|
|
document.body.offsetHeight;
|
|
document.body.append("");
|
|
document.querySelector("input").alt = "new";
|
|
</script>
|