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

22 lines
536 B
HTML

<script type="application/json" id="selectors">
[{
"selector": "address[title=\"foo\"]",
"match": ["1"]
},
{
"selector": "span[title=\"a\"]",
"match": []
},
{
"selector": "address[title='foo']",
"match": ["1"]
}]
</script>
<div id="testDOM">
<address id="1" title="foo">
<span id="2" title="b">This line should </span>
<span id="3" title="aa">have a green background.
</span>
</address>
</div>