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

31 lines
780 B
HTML

<script type="application/json" id="selectors">
[{
"selector": "p.t1",
"match": ["1"]
},
{
"selector": "p.t2",
"match": ["1"]
},
{
"selector": "div.teST",
"match": []
},
{
"selector": "div.te",
"match": []
},
{
"selector": "div.st",
"match": []
},
{
"selector": "div.te.st",
"match": []
}]
</script>
<div id="testDOM">
<p id="1" class="t1 t2">This paragraph should have a green background and a green thick solid border because it carries both classes t1 and t2.</p>
<div id="2" class="test">This line should be green.</div>
</div>