ladybird/Tests/LibWeb/Ref/input/li-change-value-attribute.html
2025-05-11 01:14:31 +02:00

17 lines
502 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<link rel="match" href="../expected/li-change-value-attribute-ref.html" />
<ol>
<li id="first">Item a</li>
<li>Item b</li>
</ol>
<script>
// Two nested requestAnimationFrame() calls to force code execution _after_ initial paint
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.getElementById("first").value = 42;
document.documentElement.className = '';
});
});
</script>
</html>