1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Border-top-width using pixels with a minimum plus one value, 1px</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#propdef-border-top-width">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-width-properties">
8 <meta name="flags" content="">
9 <meta name="assert" content="The 'border-top-width' property supports a minimum plus one length value in pixels that sets the width of the top border.">
10 <style type="text/css">
11 #wrapper
12 {
13 background: red;
14 height: 1px;
15 }
16 #test
17 {
18 border-top-style: solid;
19 border-top-width: 1px;
20 height: 0;
21 }
22 </style>
23 </head>
24 <body>
25 <p>Test passes if there is a line below and there is no red visible on the page.</p>
26 <div id="wrapper">
27 <div id="test"></div>
28 </div>
29 </body>
30 </html>