mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
19 lines
417 B
HTML
19 lines
417 B
HTML
<!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>
|