fune/testing/web-platform/tests/css/css-values/negative-calc-to-non-negative-integer.html
Vitor Roriz d0c18fe24e Bug 1807034 [wpt PR 37650] - Fix typo on negative-calc-to-non-negative-integer, a=testonly
Automatic update from web-platform-tests
Fix typo on negative-calc-to-non-negative-integer (#37650)

--

wpt-commits: dbd7c84670250f0a1b554a7053d141b3e46431b7
wpt-pr: 37650
2023-01-05 09:08:21 +00:00

18 lines
681 B
HTML

<!DOCTYPE html>
<link rel="author" title="Xiaocheng Hu" href="mailto:xiaochengh@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-values-4/#calc-range">
<link rel="help" href="https://drafts.csswg.org/css-counter-styles/#the-counter-style-rule">
<link rel="match" href="negative-calc-to-non-negative-integer-ref.html">
<meta name="assert" content="Negative calc() passed to <non-negative-integer> property value as argument should be addressed properly.">
<style>
@counter-style foo {
system: additive;
additive-symbols: 1 'I', calc(-1) 'X';
range: infinite infinite;
}
</style>
<ol style="list-style-type: foo" start=-1>
<li></li>
<li></li>
<li></li>
</ol>