Files
HTMLKit/Tests/css-tests/44.html
T
2016-08-24 19:51:41 +02:00

24 lines
626 B
HTML

<script type="application/json" id="selectors">
[{
"selector": "div > p.test",
"match": ["1", "2"]
}]
</script>
<div id="testDOM">
<div>
<p id="1" class="red test">This paragraph should have a green background</p>
<div>
<p id="2" class="red test">This paragraph should have a green background</p>
</div>
</div>
<table>
<tbody>
<tr>
<td>
<p id="3" class="white test">This paragraph should be unstyled.</p>
</td>
</tr>
</tbody>
</table>
</div>