Re: Prototype chain for objects that implement multiple interfaces

2007-06-08 Thread Boris Zbarsky
liorean wrote: Is this the reason for: var div=document.createElement('div'), span=document.createElement('span'), text=document.createTextNode('What am I?'); Function.prototype.call.call(div.appendChild,span,text); text.data+='\r\n'+text.parentNode.tagName; faili

Re: Prototype chain for objects that implement multiple interfaces

2007-06-08 Thread Boris Zbarsky
Cameron McCormack wrote: I wondered that myself, but it would help the case where script authors want to mess about with the prototypes of various objects. Perhaps it doesn’t need to be specified exactly, but with enough fixed down such that you could reliably assign to HTMLElement.prototype.ap