chromium/third_party/blink/web_tests/fast/css/error-in-last-decl.html

<html>
<head>
<style>
  #id1 {
     color:green;
     *background:black
  }

  #id2 {color:green;}
</style> 
<style>
  #id3 {
     *background:black
  }

  #id3 {color:green;}
</style> 
</head>

<body>
<p>test for <a href="https://bugs.webkit.org/show_bug.cgi?id=7157">bug 7157</a>:
An asterisk in a CSS property name breaks CSS handling (Many layout problems at letras.terra.com.br)</p>

<p id="id1">Should be green on white.</p>
<p id="id2">Should be green on white.</p>
<p id="id3">Should be green on white.</p>

</body>
</html>