16 lines
607 B
HTML
16 lines
607 B
HTML
<script type="application/json" id="selectors">
|
|
[{
|
|
"selector": "div.stub > p ~ p",
|
|
"match": ["1", "2", "3"]
|
|
}]
|
|
</script>
|
|
<div id="testDOM">
|
|
<div class="stub">
|
|
<p>This paragraph should be unstyled.</p>
|
|
<p id="1" class="red">But this one should have a green background</p>
|
|
<p id="2" class="red">And this one should also have a green background</p>
|
|
<address>This address is only here to fill some space between two paragraphs</address>
|
|
<p id="3" class="red">This paragraph should have a green background</p>
|
|
</div>
|
|
</div>
|