Just booted up firebug due to your comment because I hadn't used it in a while. Here is my reaction after using Chromium dev tools:
- JavaScript auto complete text doesn't display right, it is a different font size shadow that obscures the typed text.
- Pressing tab multiple times will not cycle autocomplete, but instead jump the focus out of the console and into the search prompt.
- Really minor, but I prefer a terminal where the output and input are simply in the same line rather than in seperate locations that require looking back and forth.
- If I declare a function "hello" in the terminal, and then type "hello", it merely prints "hello()" instead of printing the source of the function. Printing the source of the function with no extra work is especially valuable if I grab the non minimized version of a new javascript library and want to poke around and see what everything does.
+ I do think the "Net" tab displays requests a bit more concisely than Chromium. This could be beneficial if you are dealing with pages with lots of pictures.
= CSS and DOM inspection seems about equal.
My main concern is JavaScript though, as my current app is doing all of its rendering client side with only the Model layer on server.