I might have caught a problem with removeAttribute in startwindow.
Do you think that this:
this.splice(i,1)
should say this:
this.attributes.splice(i,1)
?
Here's the code I am running in jdb to raise it. My entries are
preceded with > for readability.
var blah = document.createElement("div")
blah
[object Div]
blah.attributes
blah.setAttribute('a','1')
blah.setAttribute('b','2')
blah.setAttribute('c','3')
blah.attributes
a,b,c
blah.removeAttribute('b')
jdb line 673: TypeError: this.splice is not a function
blah.removeAttribute('c')
jdb line 673: TypeError: this.splice is not a function
blah.attributes.splice(1,1)
b
blah.attributes
a,c
_______________________________________________
Edbrowse-dev mailing list
[email protected]
http://lists.the-brannons.com/mailman/listinfo/edbrowse-dev