summaryrefslogtreecommitdiffstats
path: root/layout/reftests/counter-style/descriptor-fallback.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/counter-style/descriptor-fallback.html')
-rw-r--r--layout/reftests/counter-style/descriptor-fallback.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/layout/reftests/counter-style/descriptor-fallback.html b/layout/reftests/counter-style/descriptor-fallback.html
new file mode 100644
index 000000000..deeccd316
--- /dev/null
+++ b/layout/reftests/counter-style/descriptor-fallback.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<link rel="stylesheet" href="test-common.css">
+<style type="text/css">
+ @counter-style a {
+ system: fixed;
+ symbols: a b c;
+ fallback: b;
+ }
+ @counter-style b {
+ system: fixed 4;
+ symbols: d e f;
+ fallback: a;
+ }
+ @counter-style c {
+ system: fixed 7;
+ symbols: g h i;
+ fallback: a;
+ }
+</style>
+<ol style="list-style-type: a">
+ <li><li><li>
+ <li><li><li>
+ <li><li><li>
+</ol>
+<ol style="list-style-type: b">
+ <li><li><li>
+ <li><li><li>
+ <li><li><li>
+</ol>
+<ol style="list-style-type: c">
+ <li><li><li>
+ <li><li><li>
+ <li><li><li>
+</ol>