blob: 6a096f2850d3e696f20fcbdb03cfa31578cf5a5a [file] [log] [blame]
<!doctype html>
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
<style id="style-container">
</style>
</head>
<body>
</body>
<script>
description('Test the parsing of :is(selectorList) for querySelector and style.');
function testInvalidSelector(selectorString) {
var styleContainer = document.getElementById('style-container');
styleContainer.innerHTML = ':is(' + selectorString + ') { }';
const parsed = document.getElementById('style-container').sheet.cssRules.length == 1;
debug(`selector '${styleContainer.innerHTML}' parsed: ${parsed ? "YES" : "NO"}`);
styleContainer.innerHTML = '';
}
var validSelectorsPart2 = [
// Basic types.
"foobar",
".class",
":last-child",
// Pseudo elements.
"::first-letter",
"::before",
// Compound selectors.
"foobar#id.class",
"#id:empty",
// Complex selectors.
"a b",
"a ~ b",
// Functional pseudo classes.
":-webkit-any(.selector,#tama,#hanayo,#midoriko)",
":nth-child(even of a, b, c)",
":not(:is(cocoa, cappuccino))",
];
var invalidSelectors = [
// Not selectors.
"",
" ",
",",
".123class",
"#123id",
"[]",
"()",
")",
"{}",
"}",
// Unbalanced parenthesized functional pseudo classes.
":not(",
":is(",
":nth-child(2n+1 of",
];
debug("3 :is(valid, valid, invalid) selectors");
for (var i = 0; i < validSelectorsPart2.length; ++i) {
for (var j = i; j < validSelectorsPart2.length; ++j) {
for (var k = 0; k < invalidSelectors.length; ++k) {
var selectorString = validSelectorsPart2[i] + ',' + validSelectorsPart2[j] + ',' + invalidSelectors[k];
testInvalidSelector(selectorString);
}
}
}
</script>
<script src="../../resources/js-test-post.js"></script>
</html>