escapes-012

CSS Parsing: Escaped keywords

WeasyPrint

This browser

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: CSS Parsing: Escaped keywords</title>
 5   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
 6   <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/quotes/002.xml" type="application/xhtml+xml">
 7   <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#characters">
 8   <style type="text/css">
 9    p { color: red; color: \g\r\45\65\n; } /* 'grEen' */
10   </style>
11  </head>
12  <body>
13   <p>This text should be green.</p>
14  </body>
15 </html>