20 lines
656 B
HTML
20 lines
656 B
HTML
<script type="application/json" id="selectors">
|
|
[{
|
|
"selector": "div.stub > *",
|
|
"match": ["2", "3", "4"]
|
|
},
|
|
{
|
|
"selector": "div.stub *:not([title^=\"si on\"])",
|
|
"match": ["2", "3", "5"]
|
|
}]
|
|
</script>
|
|
<div id="testDOM">
|
|
<div id="1" class="stub">
|
|
<p id="2" >This paragraph should be in green characters.</p>
|
|
<p id="3" title="on chante?">This paragraph should be in green characters.</p>
|
|
<p id="4" title="si on chantait">
|
|
<span id="5" title="si il chantait">This paragraph should be in green characters.</span>
|
|
</p>
|
|
</div>
|
|
</div>
|