summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/css2.1/t1205-c565-list-pos-00-b.html
blob: 77e3640a550aae842beeed86e586daac84f6424e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>CSS 2.1 Test Suite: list-style-position</title>
  <style type="text/css">
   ol { width: 10em; margin: 0.1em 5em; padding: 0; }
   li { margin: 0; padding: 0; }
   .one { list-style-position: outside; background: navy; color: white; }
   .one span { color: navy; }
   .two { list-style-position: inside; background: navy; color: navy; }
   .two span { color: white; }
  </style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#q10" title="12.5 Lists">
 </head>
 <body>
  <p>The following two boxes should be identical, to the pixel.</p>
  <ol class="one">
   <li><span>1.</span> Test</li>
  </ol>
  <ol class="two">
   <li><span> Test</span></li>
  </ol>
 </body>
</html>