94fed8afa1
Tests are adapted from the official suite: http://www.w3.org/Style/CSS/Test/CSS3/Selectors/current/html/static/flat/ Test file format: Each test file is a HTML fragment with: <script> element with id="selectors": contains a JSON array of several selector definitions. Each selector definition has a selector string as input, a "match" array of the expected matched IDs. Some selectors must fail with a parse error, such selectors have an "error" key with the error location in the selector string. <div> element with id="testDOM": contains the DOM fragment which should be used to select the elements for each of the defined selectors.
21 lines
555 B
HTML
21 lines
555 B
HTML
<script type="application/json" id="selectors">
|
|
[{
|
|
"selector": "input:checked",
|
|
"match": ["2"]
|
|
},
|
|
{
|
|
"selector": "input:checked + span",
|
|
"match": ["3"]
|
|
},
|
|
{
|
|
"selector": "input:checked, input:checked + span",
|
|
"match": ["2", "3"]
|
|
}]
|
|
</script>
|
|
<div id="testDOM">
|
|
<p id="1">
|
|
<input id="2" type="checkbox" checked="checked">
|
|
<span id="3">Everything in this paragraph should have a green background</span>
|
|
</p>
|
|
</div>
|