Re: [csswg-drafts] [selectors] Should `:checked` and `:indeterminate` be exclusive? (#9706)

The WPT is [here](https://github.com/web-platform-tests/wpt/blob/912f29924b31e5fcf9afbef451f535d1d27ea87b/html/semantics/selectors/pseudo-classes/checked-indeterminate.window.js).
Here is a quick example of the proposed behavior:
```javascript
const input = document.createElement('input');
input.type = 'checkbox';
input.checked = true;
input.indeterminate = true;
input.matches(':checked:indeterminate'); // should return true
```

-- 
GitHub Notification of comment by josepharhar
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/9706#issuecomment-1854398831 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 13 December 2023 17:17:51 UTC