summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/368622-1.html
blob: 8bc06cc0371da255c6a96c186eefb23ddca318c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<title>::before { display: inline-block; }</title>
<style>
ul li {
  list-style-type: none;
  counter-increment: item;
}
ul li::before {
  content: counter(item);
  display: inline-block;
  width: 3em;
}
ul {
  margin-left: 3em;
  padding-left: 0;
}
</style>
<ul>
<li>Foo
<li>Bar
</ul>