summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/first-letter-skip-marker-ref.html
blob: 82c5074fd26aa2dc35c9c8fa77dd3bf1099c5f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<title>Reference: The element's own ::marker should be skipped when finding the ::first-letter content</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<style>
body { margin-left:100px; }
ol > li { list-style-position: inside }
first-letter { color: green }
li:first-child { list-style-type: lower-alpha; list-style-type: '::marker ' }
li:last-child::marker { content: '::marker ' }
</style>
<ol>
  <li><first-letter>i</first-letter>tem</li>
  <li><first-letter>i</first-letter>tem</li>
</ol>

<ul>
  <li><first-letter>i</first-letter>tem</li>
  <li><first-letter>i</first-letter>tem</li>
</ul>