Re: [whatwg/dom] Do not throw for query() and queryAll() (#39)

I realized this issue is actually invalid as filed. The example given
```
var autofilled = node.matches(":autofill, :-webkit-autofill, :-moz-autofill");
```
never matches anything due to how selector parsing works. If a given selector in the comma-separated list is invalid, it's always a non-match. That's also true when you use such a selector in CSS.

Combined with the seeming non-interest in `query`/`queryAll`, let's close this.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/39#issuecomment-372567127

Received on Tuesday, 13 March 2018 07:06:35 UTC