xmlns attribute namespace

Since the DOM Level 2 binds namespace URIs at creation time, what namespace
would the "xmlns" attribute have?

Look at the following example from "Namespaces in XML"

<?xml version="1.0"?>
<!-- elements are in the HTML namespace, in this case by default -->
<html xmlns='http://www.w3.org/TR/REC-html40'>
  <head><title>Frobnostication</title></head>
  <body><p>Moved to
    <a href='http://frob.com'>here</a>.</p></body>
</html>

Since these example "elements are in the HTML namespace," does this mean
that the "xmlns" attribute is in the HTML namespace which it just defined?
Furthermore, should a DOM Level 2 implementation bind
http://www.w3.org/TR/REC-html40 as the namespace URI to "xmlns"?

Thanks,

Garret

Received on Wednesday, 20 December 2000 20:20:46 UTC