gecko-dev/layout/reftests/list-item/numbering-3-ref.html
Ting-Yu Lin f0a1298eaa Bug 1308587 Part 1 - Manually remove "-moz" prefixed multi-column properties in some tests. r=dholbert
In the next part, the patch generated by a script removes "-moz" prefix
to all multi-column properties.

However, some of the tests already have standard multi-column properties
specified. To avoid duplicating CSS multi-column rules in these
files (after applying the next part), I manually remove the prefixed
rules beforehand as many as possible.

Differential Revision: https://phabricator.services.mozilla.com/D44869

--HG--
extra : moz-landing-system : lando
2019-09-05 21:32:05 +00:00

53 lines
1.7 KiB
HTML

<!DOCTYPE HTML>
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Reference for testcase #1 for bug 1171419</title>
<style>
l { display:block; list-style: decimal inside; }
</style>
</head>
<body>
<ol style="display:grid; list-style-type:none">
<l start="1"><li style="overflow: hidden">List item 1</li></l>
<l start="2"><li style="overflow: hidden">List item 2</li></l>
<l start="3"><li>List item 3</li></l>
<l start="4"><li style="overflow: hidden">List item 4</li></l>
<l start="5"><li style="overflow: hidden">List item 5</li></l>
<l start="6"><li>List item 6</li></l>
<l start="7"><li>List item 7</li></l>
</ol>
<ol style="display:grid; list-style-type:none">
<div>
<l start="1"><li style="overflow: hidden">List item 1</li></l>
<l start="2"><li style="overflow: hidden">List item 2</li></l>
<l start="3"><li>List item 3</li></l>
</div>
</ol>
<ol style="display:grid; list-style-type:none">
<div style="display:grid">
<l start="1"><li style="overflow: hidden">List item 1</li></l>
<l start="2"><li style="overflow: hidden">List item 2</li></l>
<l start="3"><li>List item 3</li></l>
</div>
</ol>
<ol style="display:inline-grid; list-style-type:none">
<div style="display:grid">
<l start="1"><li style="overflow: hidden">List item 1</li></l>
<l start="2"><li style="overflow: hidden">List item 2</li></l>
<l start="3"><li>List item 3</li></l>
</div>
</ol>
<ol style="display:grid; list-style-type:none">
<l start="1"><li style="column-width:1em;">item1</li></l>
<l start="2"><li style="column-width:1em;">item2</li></l>
<l start="3"><li style="column-width:1em;">item3</li></l>
</ol>
</body>
</html>