-
Can't debug in minimized pane
-
console.log(1, 2, 3)
shows123
(not1 2 3
) -
console.log(undefined, "undefined")
showsundefinedundefined
. Ditto fornull
and"null"
-
Object properties that are on prototype chain are displayed in console (e.g.
console.log("foo")
displays object with anything defined onString.prototype
) -
Can't inspect logged object (by clicking on it) [CLOSED BY DESIGN]
-
Can't delete nodes from the tree (HTML view) [CLOSED AS POSTPONED]
-
HTML tree sometimes needs to be refreshed for changes to be displayed.
-
Inspecting element doesn't trigger hover styles (makes it hard to inspect :hover-appearing elements)
-
console.inspect()
is missing -
Support for event listener breakpoints is missing
Created
June 17, 2011 18:48
-
-
Save kangax/1032025 to your computer and use it in GitHub Desktop.
IE9 developer tools annoyances
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm often facing bad line numbers when JS errors are triggered, when the error message is not something like "There is an error, somewhere".
When elements are inserted with an Ajax request or added dynamicaly, they can NEVER be inspected as long as you don't click on "Edit source" twice (item 7).