It appears that the search window of the Dev Tools in Chrome 17 no longer matches CSS selectors. Boo. I know I can use the JS console but it really, really helps me to see the matches within the context of the DOM. If anyone knows how I can still achieve this or alternatively, how to revert to a previous (i.e. the one I had yesterday) version of chrome I would appreciate it.

link|improve this question

75% accept rate
1  
Wow, I was never aware of such a feature. Shame they took it out of Chrome... I wonder what reason they had for doing so. – BoltClock Feb 9 at 14:48
It is documented right at the bottom of this Google Code page ...except it isn't true anymore as far as I can tell. – Huliax Feb 9 at 16:22
I was using this feature hundreds of times a day. A damn shame – huyz Feb 21 at 8:00
feedback

2 Answers

up vote 5 down vote accepted

I haven't been able to find any workaround to get CSS selectors working in the search bar again. Rejoice, for they have returned!

In any case, you can still use document.querySelectorAll() with a selector in the JS console, then right-click on any of the matched elements and choose Reveal in Elements Panel and it'll show you where it is in the DOM, just as with previous versions.

link|improve this answer
That is good enough for me. Thanks for the help. – Huliax Feb 9 at 16:19
2  
You can also use $$ as a shortcut instead of typing out all of document.querySelectorAll. – Domenic May 2 at 4:59
I have filed a bug report about this, please star it so we can get this feature working again: code.google.com/p/chromium/issues/detail?id=127440 – Ariel Serafini May 11 at 1:29
2  
Domenic, or even: inspect($$('div.foo')[0]) – Paul Irish May 17 at 17:55
$('div.foo') in the chrome dev tools console...shows them all – Huliax May 17 at 18:55
feedback

This was an unintended regression in Chrome that we didn't catch. Luckily Ariel (in the comments here) filed a ticket and it was fixed two days later.

If all goes well, it'll make its way to the stable channel in about 11 weeks. However the feature is now available in Chrome Canary, so I recommend using that.

link|improve this answer
Great to see it back! And I would upvote again for capturing your answer in your screenshot. – BoltClock May 17 at 18:00
Hurray! Just makes life a bit easier. – Huliax May 17 at 18:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.