summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/list-style-type-string-003-ref.html
blob: ea3601b9598255ddb57e6d17d273d32bdad73315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>CSS Reference: String value of list-style-type with RTL direction</title>
  <link rel="author" title="Oriol Brufau" href="mailto:obrufau@gmail.com">
  <style>
    .list {
      list-style: none;
      direction: rtl;
    }
    .list > ::before {
      content: "";
      display: inline-block;
      width: 0px;
      direction: ltr;
      white-space: pre;
    }
    .list > :nth-child(2)::before { content: "foo" }
    .list > :nth-child(3)::before { content: "foobar"; }
    .list > :nth-child(4)::before { content: "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>