26 lines
519 B
HTML
26 lines
519 B
HTML
|
<div id="fixture1">
|
||
|
<p>This text A should match.</p>
|
||
|
<div class="foo">
|
||
|
This text B should not match.
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div id="fixture2">
|
||
|
<p>This text C should match.</p>
|
||
|
<div class="foo">
|
||
|
This text D should not match.
|
||
|
</div>
|
||
|
<p>This text E should match.</p>
|
||
|
</div>
|
||
|
|
||
|
<div id="fixture3">
|
||
|
<div>
|
||
|
This text F should match.
|
||
|
<ul>
|
||
|
<li>This text G should match.</li>
|
||
|
<li class="bar">This text H should not match.</li>
|
||
|
<li>This text I should match.</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|