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:
parent
d2fbc15f5d
commit
1cdbfc2ff1
10 changed files with 189 additions and 16 deletions
11
Tests/LibWeb/Layout/input/ordered-list.html
Normal file
11
Tests/LibWeb/Layout/input/ordered-list.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue