blob: ad080a1e25bf75bd82972da7cbfa9189b06e79a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!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>
<!-- The next two computes to std::numeric_limits<int32_t>::min() which we use as the "magic" number for the content based <ol reversed> start value. See https://drafts.csswg.org/css-lists-3/#ua-stylesheet -->
<span style="counter-reset: c -2147483648"></span>
<span style="counter-reset: c -2147483649"></span>
|