summaryrefslogtreecommitdiffstats
path: root/layout/reftests/list-item/bullet-space-1-ref.html
blob: e20884f086f15724cd185a1564eb3c9bb18203b2 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>

<head>
 <meta charset="utf-8">
 <title>Bug 1017335</title>
 <style>
  body {
    font-family:monospace;
    font-size:24px;
  }
  .outer {
    position:absolute;
    top:0;
    width:300px;
  }
  ul {
    margin:0;
    list-style-type:none;
  }
  span {
    display:inline-block;
  }
  .L {
    width:40px;
    text-align:right;
    white-space: pre;
  }
  .R {
    width:40px;
    text-align:left;
    white-space: pre;
  }
  .bullet {
    background:yellow;
  }
  ::marker { font-family:inherit; }
 </style>
</head>

<body>

<div class="outer">
<div>
 <ul>
  <li>foo</li>
 </ul>
</div>

<div dir="rtl">
 <ul>
  <li>bar</li>
 </ul>
</div>
</div>

<!-- The yellow background of the bullet spans here should completely cover the
     bullets from the <ul> items above, even though the exact positioning of the
     list item images may not match the plain-text version of the bullets.
     Therefore, the testcase (with list-style-type:disc) and reference (none)
     should match. -->
<div class="outer">
<div>
 <span class="L"><span class="bullet">&#x2022;</span> </span>foo
</div>

<div dir="rtl">
 <span class="R"><span class="bullet">&#x2022;</span> </span>bar
</div>
</div>

</body>

</html>