<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Parsing: Escaped keywords</title>
  <style type="text/css">
   p { color: green; color: \r\e\d; } /* '\r\e\d' is 'r^N^M', which isn't valid */
  </style>
 </head>
 <body>
  <p>This text should be green.</p>
 </body>
</html>
