blob: 60117d7a6ada4c6f6453489a7ad55be7a2c54597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<link rel="stylesheet" href="test-common.css">
<style type="text/css">
@counter-style none {
system: extends lower-roman;
}
@counter-style decimal {
system: extends upper-roman;
}
@counter-style hebrew {
system: extends cjk-decimal;
}
</style>
<ol>
<li style="list-style-type: none">foo
<li style="list-style-type: decimal">bar
<li style="list-style-type: hebrew">
</ol>
|