summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/list-style-type-string-003.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-lists/list-style-type-string-003.html')
-rw-r--r--testing/web-platform/tests/css/css-lists/list-style-type-string-003.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-lists/list-style-type-string-003.html b/testing/web-platform/tests/css/css-lists/list-style-type-string-003.html
new file mode 100644
index 0000000000..94467ca1f2
--- /dev/null
+++ b/testing/web-platform/tests/css/css-lists/list-style-type-string-003.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>String value of list-style-type with RTL direction</title>
+ <link rel="author" title="Oriol Brufau" href="mailto:obrufau@gmail.com">
+ <link rel="help" href="https://drafts.csswg.org/css-lists-3/#valdef-list-style-type-string">
+ <link rel="match" href="list-style-type-string-003-ref.html">
+ <meta name="assert" content="This test checks that list-style-type can set the marker string when the direction is RTL.">
+ <style>
+ .list {
+ list-style-type: "";
+ direction: rtl;
+ }
+ .list > :nth-child(2) { list-style-type: "foo" }
+ .list > :nth-child(3) { list-style-type: "foobar"; }
+ .list > :nth-child(4) { list-style-type: "some very long text that is not going to fit and will overflow"; }
+ </style>
+</head>
+<body>
+ <ol class="list">
+ <li>item 1</li>
+ <li>item 2</li>
+ <li>item 3</li>
+ <li>item 4</li>
+ </ol>
+ <ul class="list">
+ <li>item 1</li>
+ <li>item 2</li>
+ <li>item 3</li>
+ <li>item 4</li>
+ </ul>
+</body>
+</html>