1411799-1.html (534B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="UTF-8"> 4 <title>Testcase, Mozilla bug 1411799</title> 5 <style> 6 section { 7 width: 42em; 8 } 9 10 ul { 11 padding: 0; 12 list-style-type: none; 13 columns: 14em; 14 column-gap: 0; 15 } 16 17 li { 18 margin: 0 0 8px 0; 19 padding: 0 0 0 20px; 20 } 21 22 li::before { 23 float: left; 24 margin-left: -16px; 25 content: 'o'; 26 } 27 28 </style> 29 30 <section> 31 <ul> 32 <li>Future</li> 33 <li>Firefox 70</li> 34 <li>Firefox 69</li> 35 <li>Firefox 68</li> 36 <li>Previous Versions</li> 37 </ul> 38 </section>