blob: e75fa8a7d88040b70d21f04de3859e7c9600cce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!-- This test is intentionally in quirks mode -->
<style>
div { color: red; }
.TEST1 div { color: green; }
#TEST2 div { color: green; }
</style>
<div class="test1">
<div>This text should be green</div>
</div>
<div id="test2">
<div>This text should be green</div>
</div>
|