Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/selectors/parsing/parse-has-disallow-nesting-has-inside-has.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Selectors: The relational pseudo-class (disallow nesting :has() inside :has())</title>
<link rel="author" title="Byungwoo Lee" href="mailto:blee@igalia.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<script>
test_invalid_selector('.a:has(.b:has(.c))');
test(() => {
// It's not easy to check that these are invalid because :is() and :where()
// use forgiving parsing. Check that they never match instead.
assert_false(document.documentElement.matches(":has(:is(:has(*)))"));
assert_false(document.documentElement.matches(":has(:where(:has(*)))"));
assert_true(document.documentElement.matches(":has(:is(:has(*), script))"));
assert_true(document.documentElement.matches(":has(:where(:has(*), script))"));
})
</script>