summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/marker-content-023.html
blob: 9ec0ca46e4290dad6b9e3456b76602d05ab5e7c0 (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
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test: ::marker pseudo elements styled with 'content' property</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<link rel="match" href="marker-content-023-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo">
<link rel="help" href="https://drafts.csswg.org/css-text/#text-indent-property">
<meta name="assert" content="Checks that 'text-indent' doesn't apply nor inherit to ::marker.">
<style>
li {
  text-indent: 100px; /* Should not be inherited by ::marker */
}
::marker {
  text-indent: 100px; /* Should have no effect */
}
li > div {
  text-indent: 0;
}
.disc {
  list-style-type: disc;
}
.decimal {
  list-style-type: decimal;
}
.string {
  list-style-type: "3. ";
}
.content::marker {
  content: "4. ";
}
.rtl-marker ::marker {
  direction: rtl;
}
</style>
<ol>
  <li class="disc"><div>disc</div></li>
  <li class="decimal"><div>decimal</div></li>
  <li class="string"><div>string</div></li>
  <li class="content"><div>content</div></li>
</ol>
<ol class="rtl-marker">
  <li class="disc"><div>disc</div></li>
  <li class="decimal"><div>decimal</div></li>
  <li class="string"><div>string</div></li>
  <li class="content"><div>content</div></li>
</ol>