<html><head>
<title>Contains attribute selector with empty value</title>
<style type="text/css">
p { color: lime; }
p[class*=""] { color: red; }
</style>
<link rel="author" title="Lachlan Hunt" href="http://lachy.id.au/about/contact">
<link rel="help" href="https://www.w3.org/TR/css3-selectors/#selectors"> <!-- bogus link to make sure it gets found -->
<link rel="match" href="css3-modsel-184-ref.xht">
<meta name="flags" content="">
</head>
<body>
<!--[ELEMENT('p')]--><p class=""><!--[TEXT('p')]-->This text should be green.<!--[/TEXT('p')]--></p><!--[/ELEMENT('p')]-->
<!--[ELEMENT('p')]--><p><!--[TEXT('p')]-->This text should be green.<!--[/TEXT('p')]--></p><!--[/ELEMENT('p')]-->
</body></html>