- From: Jonas Sicking <jonas@sicking.cc>
- Date: Wed, 30 Apr 2008 17:57:32 -0700
- To: Bjoern Hoehrmann <derhoermi@gmx.net>
- CC: John Resig <jresig@mozilla.com>, "L. David Baron" <dbaron@dbaron.org>, public-webapi@w3.org
Bjoern Hoehrmann wrote: > * Jonas Sicking wrote: >> It's not so much fact that it's a pseudo-class, but rather that it's a >> "simple selector" (sorry dbaron, don't know the correct term) which >> $self would be too. Unless we're redefining the CSS parsing rules which >> would mean that we have a lot of work remaining. > > The problem with using a pseudo-class, and I understood you to say as > much, is that right now e.querySelector(":a > b") would match any 'b' > element that has a parent element that both matches the 'a' condition > and is a descendant of 'e'. Except with :scope, where "descendant" be- > comes "descendant-or-self". So it would be magic among the pseudo- > classes. If some other syntax is used, there would not be a magic > pseudo-class, which raises less of the questions you were asking. I'm > not sure why this would not address the problem, clearly you would've > to specify how to parse and interpret the new syntax, right now $self > (or whatever syntax you'd use) is not valid in selectors. The DOM walking isn't done in the matching for the pseudo selector, but rater in the code for the '>' combinator. So it's the code for the '>' that will prevent matching on the 'self', not the code for the pseudo-selector. Note that current implementations of Selectors not by starting at the first selector, ":a", finding all nodes that match that, then find all descendants named "b" of those nodes. Instead, they work by given a node and a selector, testing if the given node matches the selector. This is the solution you need when doing CSS styling, test single node against a set of selectors. At least mozilla is going to implement querySelectorAll by building on that implementation. This will be done by testing each node in the set of possible result nodes against the selector. So when we find a node that matches "b", the implementation for ">" will walk the parent chain and test each node against ":a". If we only want to test simple selectors against descendants of the context node, then the ">" will abort as soon as the context node is reached and say that the selector doesn't match. So we won't even reach the code for the "$self" or ":scope" or whatever we call it. This is certainly a solvable problem, but we would have to define very precisely how matching is supposed to happen. / Jonas
Received on Thursday, 1 May 2008 00:58:56 UTC