summaryrefslogtreecommitdiffstats
path: root/layout/reftests/pagination/1411799-1.html
blob: 9584a49b73d71b6f21acc937b1cb68f739fc3975 (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
<!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 0 0 20px;
  }

  li::before {
    float: left;
    margin-left: -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>