mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
Otherwise, the arrow painted next to the <details> element does not update. Using a screenshot test here because apparently the direction of the arrow has no effect on the layout or paint trees.
10 lines
250 B
HTML
10 lines
250 B
HTML
<!doctype html>
|
|
<link rel="match" href="../expected/details-open-then-closed-ref.html" />
|
|
<details id="details" open>
|
|
<summary>I'm a summary</summary>
|
|
<span>I'm a node</span>
|
|
</details>
|
|
<script>
|
|
details.removeAttribute("open");
|
|
</script>
|