When I call this line:
Object.getOwnPropertyDescriptor(HTMLElement.prototype,"innerHTML")
For FireBug it returns:
>>> Object.getOwnPropertyDescriptor(HTMLElement.prototype,"innerHTML")
where for IE, Developer Tools it returns:
>> Object.getOwnPropertyDescriptor(HTMLElement.prototype,"innerHTML")
{
get : function innerHTML() { [native code] } ,
set : function innerHTML() { [native code] } ,
enumerable : true,
configurable : true
}
Do you know why it is different? Why IE Dev. Tools seems to be more descriptive than FireBug for this case?