diff options
Diffstat (limited to 'layout/reftests/counter-style/system-extends.html')
-rw-r--r-- | layout/reftests/counter-style/system-extends.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/reftests/counter-style/system-extends.html b/layout/reftests/counter-style/system-extends.html new file mode 100644 index 000000000..cb51626d3 --- /dev/null +++ b/layout/reftests/counter-style/system-extends.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<link rel="stylesheet" href="test-common.css"> +<style type="text/css"> + @counter-style a { + system: extends upper-roman; + prefix: "Chapter "; + range: 1 5; + } + @counter-style b { + system: extends a; + prefix: "Section "; + range: 1 6; + } +</style> +<ol start="-2" style="list-style-type: a"> + <li><li><li><li><li> + <li><li><li><li><li> +</ol> +<ol start="-2" style="list-style-type: b"> + <li><li><li><li><li> + <li><li><li><li><li> +</ol> |