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: Invalid Space-terminated Character Escapes</title>
5 <link rel="author" title="L. David Baron" href="http://dbaron.org/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#characters">
7 <meta name="flags" content="invalid">
8 <style type="text/css">
9
10 p.class { background: green; color: white; }
11 p.c\06C ass { back\67round: r\000065 ed; }
12 p.c\06Cass { back\67
13 round: r\000065ed; }
14 p.c\06Cass { back\67round: r\000065
15 ed; }
16
17 </style>
18 </head>
19 <body>
20
21 <p class="class">This should have a green background.</p>
22
23 </body>
24 </html>