tenfourfox/layout/reftests/counters/counter-reset-integer-range.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

15 lines
454 B
HTML

<!DOCTYPE HTML>
<title>Expected integer range</title>
<style>
span::after { content: counter(c); }
</style>
<span style="counter-reset: c 0"></span>
<span style="counter-reset: c 2147483647"></span>
<span style="counter-reset: c 2147483648"></span>
<span style="counter-reset: c 2147483649"></span>
<span style="counter-reset: c -2147483647"></span>
<span style="counter-reset: c -2147483648"></span>
<span style="counter-reset: c -2147483649"></span>