gecko-dev/layout/reftests/list-item/numbering-3.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

50 lines
1.4 KiB
HTML

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