c71-fwd-parsing-003

Forward-Compatible Parsing

WeasyPrint

This browser

Flags
invalid

Source

 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.eighteena {text-decoration: underline overline line-through diagonal;
12                font: bold highlighted 100% sans-serif;}
13    p.eighteenb {text-decoration: underline overline line-through diagonal;
14                font: bold highlighted 100% serif;}
15    em, p.nineteena ! em, strong {font-size: 200%; }
16   </style>
17   <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#parsing-errors" title="4.2 Rules for handling parsing errors">
18  </head>
19  <body>
20   <p>These four lines should look identical, to the pixel.</p>
21   <p class="eighteena">
22    These four lines should look identical, to the pixel.
23   </p>
24   <p class="eighteenb">
25    These four lines should look identical, to the pixel.
26   </p>
27   <p class="nineteena">
28    These four lines should look identical, to the pixel.
29   </p>
30  </body>
31 </html>