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: Forward-Compatible Parsing</title>
5 <meta name="flags" content="invalid">
6 <link rel="help" href="http://www.w3.org/TR/REC-CSS1#forward-compatible-parsing">
7 <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html">
8 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
9 <style type="text/css">
10 body { color: navy; }
11 p.sixa {border-width: medium; border-style: solid;}
12 p.sixb {border-width: funny; border-style: solid;}
13 p.sixc {border-width: 50zu; border-style: solid;}
14 p.sixd {border-width: px; border-style: solid;}
15 </style>
16 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#parsing-errors" title="4.2 Rules for handling parsing errors">
17 </head>
18 <body>
19 <p>The next four blocks should look identical, to the pixel.</p>
20 <p class="sixa">Test</p>
21 <p class="sixb">Test</p>
22 <p class="sixc">Test</p>
23 <p class="sixd">Test</p>
24 </body>
25 </html>