summaryrefslogtreecommitdiffstats
path: root/layout/reftests/pagination/1411799-1-ref.html
blob: 61bc77fa42e8ffc7a42b3f08e5d1ae5318060624 (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
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<title>Testcase, Mozilla bug 1411799</title>
<style>
  section {
    width: 42em;
  }

  ul {
    padding: 0;
    list-style-type: none;
    columns: 14em;
    column-gap: 0;
  }

  li {
    margin: 0 0 8px 0;
    padding: 0;
  }

  li::before {
    display: inline-block;
    margin-left: 4px;
    width: 16px;
    content: 'o';
  }

</style>

<section>
  <ul>
    <li>Future</li>
    <li>Firefox 70</li>
    <li>Firefox 69</li>
    <li>Firefox 68</li>
    <li>Previous Versions</li>
  </ul>
</section>