mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-15 03:17:05 +02:00
Previously, updating the `reversed`, `start` or `type` attribute of an ordered list with text only children would cause a crash.
6 lines
117 B
HTML
6 lines
117 B
HTML
<!DOCTYPE html>
|
|
<ol>text only</ol>
|
|
<script>
|
|
document.querySelector("ol").setAttribute("reversed", "");
|
|
</script>
|