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
26 lines
666 B
HTML
26 lines
666 B
HTML
<!DOCTYPE HTML>
|
|
<html><head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
<title>Testcase #1 for bug 614969</title>
|
|
</head>
|
|
<body>
|
|
|
|
<ol style="list-style: decimal inside">
|
|
<li>List item 1</li>
|
|
<li>List item 2</li>
|
|
<li>List item 3</li>
|
|
<li>List item 4</li>
|
|
<li>List item 5</li>
|
|
<li>List item 6</li>
|
|
<div><li>List item 7</li></div>
|
|
</ol>
|
|
|
|
<ol style="list-style: decimal inside;">
|
|
<div style="column-width:1em;"><li></li><div>item1</div></div>
|
|
<div style="column-width:1em;"><li></li><div>item2</div></div>
|
|
<div style="column-width:1em;"><li></li><div>item3</div></div>
|
|
</ol>
|
|
|
|
</body>
|
|
</html>
|