
08-06-2009
|
|
|
|
CSS Parsing error on selectors
In the example below, the last "root-"div will be rendered in red, while it
shouldn't be:
<html><head><style><!--
..test .yes { color: green; }
..test.no { color: red; }
--></style></head><body>
<div class="test yes">YES</div>
<div class="test"><div class="yes">YES</div></div>
<div class="test no">NO</div>
<div class="test"><div class="no">NO</div></div>
</body></html>
|