mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
15 lines
330 B
HTML
15 lines
330 B
HTML
<!doctype html>
|
|
<title>CSS Test reference</title>
|
|
<link rel="author" title="Xiaocheng Hu" href="mailto:xiaochengh@chromium.org">
|
|
<style>
|
|
@counter-style foo {
|
|
system: additive;
|
|
additive-symbols: 1 'I', 0 'X';
|
|
range: infinite infinite;
|
|
}
|
|
</style>
|
|
<ol style="list-style-type: foo" start=-1>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
</ol>
|