| 12345678910111213141516171819202122232425262728293031323334353637 |
- <head>
- <style>
- .test-cases li {
- width: 200px;
- text-align: center;
- }
- </style>
- </head>
- <div class="test-cases">
- <h2>Icon sizing</h2>
- <ol>
- <li id="icon20"></li>
- <li id="icon40"></li>
- <li id="icon60"></li>
- </ol>
- <h2>Icon colors</h2>
- <ol>
- <li>icon <span id="icon-red"></span> has own color</li>
- <li style="color: blue">icon <span id="icon-blue-inherited"></span> inherits color</li>
- </ol>
- <h2>Icon with dirty markup</h2>
- <ol>
- <li id="icon-dirty"></li>
- </ol>
- <h2>Icon with own viewBox</h2>
- <ol>
- <li id="icon-view-box"></li>
- </ol>
- </div>
|