Closed
Bug 749755
Opened 13 years ago
Closed 12 years ago
Scratchpad fails to provide any feedback on objects that inherit from `null`
Categories
(DevTools Graveyard :: Scratchpad, defect, P3)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 807924
People
(Reporter: irakli, Unassigned)
Details
For example executing following will give no feedback:
Object.create(null)
That's because Object.create(null) + 'foo' will throw. Correct way of doing that would be:
((value && !('toString' in value)) ? Object.prototype.toString.call(value) : value) + 'foo'
Comment 1•12 years ago
|
||
this should go away when we move to using the debug protocol.
Filter on BLACKEAGLE?!
Priority: -- → P3
Updated•12 years ago
|
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → DUPLICATE
Updated•6 years ago
|
Product: Firefox → DevTools
Updated•5 years ago
|
Product: DevTools → DevTools Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•