1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:37:35 +00:00

LibWeb: Add ol start and li value attributes support

This commit is contained in:
Bastiaan van der Plaat 2023-10-11 18:42:09 +02:00 committed by Andreas Kling
parent d2fbc15f5d
commit 1cdbfc2ff1
10 changed files with 189 additions and 16 deletions

View file

@ -0,0 +1,11 @@
<ol start="20">
<li>Item 20</li>
<li>Item 21</li>
<li>Item 22</li>
</ol>
<ol>
<li>Item 1</li>
<li value="5">Item 5</li>
<li>Item 6</li>
<li>Item 7</li>
</ol>