Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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="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>