RESOLVED FIXED 79077
Add :scope pseudo-class
https://bugs.webkit.org/show_bug.cgi?id=79077
Summary Add :scope pseudo-class
Roland Steiner
Reported 2012-02-20 21:34:52 PST
Add :scope pseudo-class that only matches against the contextual reference element - see http://dev.w3.org/csswg/selectors4/#scope-pseudo.
Attachments
Patch (7.69 KB, patch)
2012-03-02 02:54 PST, Roland Steiner
no flags
Roland Steiner
Comment 1 2012-03-02 02:54:18 PST
WebKit Review Bot
Comment 2 2012-03-02 06:26:31 PST
Comment on attachment 129862 [details] Patch Clearing flags on attachment: 129862 Committed r109573: <http://trac.webkit.org/changeset/109573>
WebKit Review Bot
Comment 3 2012-03-02 06:26:36 PST
All reviewed patches have been landed. Closing bug.
Bronislav Klucka
Comment 4 2012-03-13 14:53:20 PDT
hello, <ul id="templ"><li></li><li></li></ul> running on yesterday nightly chromium (19.0.1068.0, 2012-03-12) and I'm having such results document.getElementById('templ').querySelectorAll(':scope'); returns empty set instead of set with one UL document.getElementById('templ').querySelectorAll(':scope li'); returns set of LI (that is fine) document.getElementById('templ').querySelectorAll(':scope > li'); returns empty set instead of set of LI
Roland Steiner
Comment 5 2012-03-13 19:06:52 PDT
(In reply to comment #4) :scope is not yet implemented for querySelectorAll(), but it certainly should be! I opened bug 81069 for this.
Note You need to log in before you can comment on or make changes to this bug.