ladybird/Tests/LibWeb/Screenshot/input/ordered-list.html
Psychpsyo a5a84159a3 Meta: Add DOCTYPEs to sceenshot tests
input-placeholder-ref was modified because the input box ends up
being slightly wider outside of quirks mode.
2025-03-20 11:50:49 +01:00

30 lines
506 B
HTML

<!DOCTYPE html>
<link rel="match" href="../expected/ordered-list-ref.html" />
<ol>
<li>1</li>
<li>2</li>
<li value="5">5</li>
<li>6</li>
<li>7</li>
</ol>
<ol start="20">
<li>20</li>
<li>21</li>
<li value="5">5</li>
<li>6</li>
<li>7</li>
</ol>
<ol reversed>
<li>5</li>
<li>4</li>
<li value="5">5</li>
<li>4</li>
<li>3</li>
</ol>
<ol reversed start="20">
<li>20</li>
<li>19</li>
<li value="5">5</li>
<li>4</li>
<li>3</li>
</ol>