dead live
Friday, 24. March 2006, 23:43:59
live.com was fixed to work in Opera but apparently recent changes have broken it again. Here is why:
Now, this would work fine if they sent an XHTML content-type, added a namespace URI and fixed the case issue.
But is it a bug in Opera? I haven't been able to interpret the xmlns spec in enough detail to understand whether this is covered. Or is it in the DOM spec? Validation certainly seems to say it is wrong to declare a namespace without URI.
The only thing I know for sure is that FireFox does the same as Opera, and that might indicate that a standard is being followed. Perhaps readers more skilled at xmlns juggling can enlighten me, if not I'll learn when developers comment on the bug report..
- They declare a namespace without associating a namespace URI with it: <html xmlns:Web> in a normal text/html document
- When they use the namespace in <web:binding>, Opera will not return that element when you do document.getElementsByTagName('binding')
- (Also note that they use a capital letter in the namespace declaration and lower case in the document)
Now, this would work fine if they sent an XHTML content-type, added a namespace URI and fixed the case issue.
But is it a bug in Opera? I haven't been able to interpret the xmlns spec in enough detail to understand whether this is covered. Or is it in the DOM spec? Validation certainly seems to say it is wrong to declare a namespace without URI.
The only thing I know for sure is that FireFox does the same as Opera, and that might indicate that a standard is being followed. Perhaps readers more skilled at xmlns juggling can enlighten me, if not I'll learn when developers comment on the bug report..