summaryrefslogtreecommitdiffstats
path: root/layout/reftests/counters/counter-reset-integer-range.html
blob: a6fa15e8ecde9edfa4376cab81a9046498af1859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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>
<!--
  We use std::numeric_limits<int32_t>::min() as an internal "magic" value to
  implement the content based <ol reversed> start value. So the following two
  values are outside our supported range and should be clamped to the valid
  range per spec.
-->
<span style="counter-reset: c -2147483648"></span>
<span style="counter-reset: c -2147483649"></span>