summaryrefslogtreecommitdiffstats
path: root/layout/reftests/counter-style/system-alphabetic-invalid.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/counter-style/system-alphabetic-invalid.html')
-rw-r--r--layout/reftests/counter-style/system-alphabetic-invalid.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/counter-style/system-alphabetic-invalid.html b/layout/reftests/counter-style/system-alphabetic-invalid.html
new file mode 100644
index 000000000..a37eefed3
--- /dev/null
+++ b/layout/reftests/counter-style/system-alphabetic-invalid.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<link rel="stylesheet" href="test-common.css">
+<style type="text/css">
+ @counter-style a {
+ system: alphabetic;
+ suffix: ":";
+ }
+ @counter-style b {
+ system: alphabetic;
+ symbols: A;
+ suffix: ":";
+ }
+</style>
+<ol start="-2" style="list-style-type: a">
+ <li>foo<li>bar<li>foo<li>bar
+</ol>
+<ol start="-2" style="list-style-type: b">
+ <li>foo<li>bar<li>foo<li>bar
+</ol>