mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 12:51:06 +00:00
f0a1298eaa
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
50 lines
1.4 KiB
HTML
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>
|