At W3schools an article on XML Namespaces states:
Note: The namespace URI is not used by the parser to look up information
I have a very simple XML file:
<?xml version="1.0" encoding="utf-8"?>
<foo>
<bar>Hi!</bar>
<button xmlns="http://www.w3.org/1999/xhtml">Click Me!</button>
</foo>
Opening this file in Chrome or Firefox displays an HTML button (not in IE). Does this mean some browsers process XMLNS? Is this one of those "extra/nice" features provide by browsers for the common XHTML namespace?
Just curious!