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

31 lines
959 B
HTML

<script type="application/json" id="selectors">
[{
"selector": "p:not(#other).class:not(.fail).test#id#id",
"match": ["id"]
},
{
"selector": "div:not(#theid).class:not(.fail).test#theid#theid",
"match": []
},
{
"selector": "div:not(#other).notclass:not(.fail).test#theid#theid",
"match": []
},
{
"selector": "div:not(#other).class:not(.test).test#theid#theid",
"match": []
},
{
"selector": "div:not(#other).class:not(.fail).nottest#theid#theid",
"match": []
},
{
"selector": "div:not(#other).class:not(.fail).nottest#theid#other",
"match": []
}]
</script>
<div id="testDOM">
<p id="id" class="class test">This line should be green.</p>
<div id="theid" class="class test">This line should be green.</div>
</div>