540 |
|
|
541 |
</div> |
</div> |
542 |
|
|
543 |
|
|
544 |
|
<div class=section id=section-documenttype> |
545 |
|
<h3>Modifications to the <code id=DocumentType>DocumentType</code> |
546 |
|
Interface</h3> |
547 |
|
|
548 |
|
<p>A <a href="#DocumentType"><code>DocumentType</code></a> interface |
549 |
|
<em class=rfc2119>MAY</em> contain zero or more |
550 |
|
<a href="#ProcessingInstruction"><code>ProcessingInstruction</code></a> |
551 |
|
nodes in the <code>NodeList</code> object contained in the |
552 |
|
<code>childNodes</code> attribute of the |
553 |
|
<a href="#DocumentType"><code>DocumentType</code></a> node.</p> |
554 |
|
|
555 |
|
<p>If the <a href="#DocumentType"><code>DocumentType</code></a> node is created |
556 |
|
during the process to create a <abbr>DOM</abbr> from an <abbr>XML</abbr> |
557 |
|
document, the <code>NodeList</code> object in the <code>childNodes</code> |
558 |
|
object <em class=rfc2119>MUST</em> contains the |
559 |
|
<a href="#ProcessingInstruction"><code>ProcessingInstruction</code></a> |
560 |
|
nodes representing the processing instructions in the document type |
561 |
|
definition of the document processed <span class=ed>@@ ref</span> by |
562 |
|
the <abbr>XML</abbr> processor. If the |
563 |
|
<a href="#DocumentType"><code>DocumentType</code></a> node is marked |
564 |
|
as read$B!>(Bonly, then all the child nodes <em class=rfc2119>MUST</em> |
565 |
|
also be marked as read$B!>(Bonly.</p> |
566 |
|
|
567 |
|
<p>If a <a href="#DocumentType"><code>DocumentType</code></a> node is created |
568 |
|
from a document type declaration information item <span class=ed>@@ ref</span>, |
569 |
|
the <code>NodeList</code> object in the <code>childNodes</code> attribute |
570 |
|
of the node <em class=rfc2119>MUST</em> contain the |
571 |
|
<a href="#ProcessingInstruction"><code>ProcessingInstruction</code></a> nodes |
572 |
|
created from the processing instruction information items in the list in the |
573 |
|
[children] property of the document type declaration item in the same |
574 |
|
order.</p> |
575 |
|
|
576 |
|
<p>If a <a href="#DocumentType"><code>DocumentType</code></a> node is mapped to |
577 |
|
a document type declaration information item, the list in the [children] |
578 |
|
property <em class=rfc2119>MUST</em> contain the processng instruction |
579 |
|
information items created from the |
580 |
|
<a href="#ProcessingInstruction"><code>ProcessingInstruction</code></a> nodes |
581 |
|
in the <code>NodeList</code> object in the <code>childNodes</code> attribute |
582 |
|
of the <a href="#DocumentType"><code>DocumentType</code></a> node.</p> |
583 |
|
|
584 |
|
<p>The implementation of the |
585 |
|
<a href="#DocumentType"><code>DocumentType</code></a> interface |
586 |
|
<em class=rfc2119>MUST</em> be modified as following:</p> |
587 |
|
<pre class=idl><code>// Modifications to the DocumentType interface |
588 |
|
attribute DOMString <a href="#publicId">publicId</a>; |
589 |
|
attribute DOMString <a href="#systemId">systemId</a>; |
590 |
|
|
591 |
|
attribute DOMString <a href="#internalSubset">internalSubset</a>; |
592 |
|
</code></pre> |
593 |
|
|
594 |
|
<p>The <code id=publicId>publicId</code> attribute and the |
595 |
|
<code id=systemId>systemId</code> attribute of |
596 |
|
<a href="#DocumentType"><code>DocumentType</code></a>, |
597 |
|
<a href="#Entity"><code>Entity</code></a>, and |
598 |
|
<a href="#Notation"><code>Notation</code></a> interfaces are no longer |
599 |
|
read$B!>(Bonly.</p> |
600 |
|
|
601 |
|
<p>On setting, the attribute <em class=rfc2119>MUST</em> raise a |
602 |
|
<code>NO_MODIFICATION_ALLOWED_ERR</code> <span class=ed>@@ ref</span> |
603 |
|
exception if the node is read$B!>(Bonly <span class=ed>@@ ref</span>. |
604 |
|
Otherwise, it <em class=rfc2119>MUST</em> set the specified value as the value |
605 |
|
associated to the attribute. No normalization, relative reference resolution, |
606 |
|
or lexical validation is performed. <span class=ed>@@ If the new |
607 |
|
value is <code>null</code>, ...</span></p> |
608 |
|
|
609 |
|
<div class="note memo"> |
610 |
|
<p>Setting an invalid identifier might make the node unserializable. |
611 |
|
Setting a public identifier while leaveing system identifier unspecified |
612 |
|
would also make the <a href="#DocumentType"><code>DocumentType</code></a> |
613 |
|
or <a href="#Entity"><code>Entity</code></a> node unserializable.</p> |
614 |
|
</div> |
615 |
|
|
616 |
|
<div class=ed> |
617 |
|
<p>ISSUE: In HTML5, Firefox 1.5, and Opera 9, not specifying public or system identifier results in empty strings.</p> |
618 |
|
</div> |
619 |
|
|
620 |
|
<p>The <code id=internalSubset>internalSubset</code> attribute of the |
621 |
|
<a href="#DocumentType"><code>DocumentType</code></a> interface is no longer |
622 |
|
read$B!>(Bonly.</p> |
623 |
|
|
624 |
|
<p>On setting, the attribute <em class=rfc2119>MUST</em> raise a |
625 |
|
<code>NO_MODIFICATION_ALLOWED_ERR</code> <span class=ed>@@ ref</span> |
626 |
|
exception if the node is read$B!>(Bonly <span class=ed>@@ ref</span>. |
627 |
|
Otherwise, it <em class=rfc2119>MUST</em> set the specified value as the value |
628 |
|
associated to the attribute. No normalization, or lexical validation is |
629 |
|
performed. <span class=ed>@@ If the new value is <code>null</code>, |
630 |
|
...</span></p> |
631 |
|
|
632 |
|
</div> |
633 |
|
|
634 |
<div class=section id=section-documenttypedefinition> |
<div class=section id=section-documenttypedefinition> |
635 |
<h3>The <code>DocumentTypeDefinition</code> Interface</h3> |
<h3>The <code>DocumentTypeDefinition</code> Interface</h3> |
636 |
|
|
1018 |
|
|
1019 |
</div> |
</div> |
1020 |
|
|
|
<div class=section id=section-documenttype> |
|
|
<h3>Modifications to the <code id=DocumentType>DocumentType</code> |
|
|
Interface</h3> |
|
|
|
|
|
<p>A <a href="#DocumentType"><code>DocumentType</code></a> interface |
|
|
<em class=rfc2119>MAY</em> contain zero or more |
|
|
<a href="#ProcessingInstruction"><code>ProcessingInstruction</code></a> |
|
|
nodes in the <code>NodeList</code> object contained in the |
|
|
<code>childNodes</code> attribute of the |
|
|
<a href="#DocumentType"><code>DocumentType</code></a> node.</p> |
|
|
|
|
|
<p>If the <a href="#DocumentType"><code>DocumentType</code></a> node is created |
|
|
during the process to create a <abbr>DOM</abbr> from an <abbr>XML</abbr> |
|
|
document, the <code>NodeList</code> object in the <code>childNodes</code> |
|
|
object <em class=rfc2119>MUST</em> contains the |
|
|
<a href="#ProcessingInstruction"><code>ProcessingInstruction</code></a> |
|
|
nodes representing the processing instructions in the document type |
|
|
definition of the document processed <span class=ed>@@ ref</span> by |
|
|
the <abbr>XML</abbr> processor. If the |
|
|
<a href="#DocumentType"><code>DocumentType</code></a> node is marked |
|
|
as read$B!>(Bonly, then all the child nodes <em class=rfc2119>MUST</em> |
|
|
also be marked as read$B!>(Bonly.</p> |
|
|
|
|
|
<p>If a <a href="#DocumentType"><code>DocumentType</code></a> node is created |
|
|
from a document type declaration information item <span class=ed>@@ ref</span>, |
|
|
the <code>NodeList</code> object in the <code>childNodes</code> attribute |
|
|
of the node <em class=rfc2119>MUST</em> contain the |
|
|
<a href="#ProcessingInstruction"><code>ProcessingInstruction</code></a> nodes |
|
|
created from the processing instruction information items in the list in the |
|
|
[children] property of the document type declaration item in the same |
|
|
order.</p> |
|
|
|
|
|
<p>If a <a href="#DocumentType"><code>DocumentType</code></a> node is mapped to |
|
|
a document type declaration information item, the list in the [children] |
|
|
property <em class=rfc2119>MUST</em> contain the processng instruction |
|
|
information items created from the |
|
|
<a href="#ProcessingInstruction"><code>ProcessingInstruction</code></a> nodes |
|
|
in the <code>NodeList</code> object in the <code>childNodes</code> attribute |
|
|
of the <a href="#DocumentType"><code>DocumentType</code></a> node.</p> |
|
|
|
|
|
<p>The implementation of the |
|
|
<a href="#DocumentType"><code>DocumentType</code></a> interface |
|
|
<em class=rfc2119>MUST</em> be modified as following:</p> |
|
|
<pre class=idl><code>// Modifications to the DocumentType interface |
|
|
attribute DOMString <a href="#publicId">publicId</a>; |
|
|
attribute DOMString <a href="#systemId">systemId</a>; |
|
|
|
|
|
attribute DOMString <a href="#internalSubset">internalSubset</a>; |
|
|
</code></pre> |
|
|
|
|
|
<p>The <code id=publicId>publicId</code> attribute and the |
|
|
<code id=systemId>systemId</code> attribute of |
|
|
<a href="#DocumentType"><code>DocumentType</code></a>, |
|
|
<a href="#Entity"><code>Entity</code></a>, and |
|
|
<a href="#Notation"><code>Notation</code></a> interfaces are no longer |
|
|
read$B!>(Bonly.</p> |
|
|
|
|
|
<p>On setting, the attribute <em class=rfc2119>MUST</em> raise a |
|
|
<code>NO_MODIFICATION_ALLOWED_ERR</code> <span class=ed>@@ ref</span> |
|
|
exception if the node is read$B!>(Bonly <span class=ed>@@ ref</span>. |
|
|
Otherwise, it <em class=rfc2119>MUST</em> set the specified value as the value |
|
|
associated to the attribute. No normalization, relative reference resolution, |
|
|
or lexical validation is performed. <span class=ed>@@ If the new |
|
|
value is <code>null</code>, ...</span></p> |
|
|
|
|
|
<div class="note memo"> |
|
|
<p>Setting an invalid identifier might make the node unserializable. |
|
|
Setting a public identifier while leaveing system identifier unspecified |
|
|
would also make the <a href="#DocumentType"><code>DocumentType</code></a> |
|
|
or <a href="#Entity"><code>Entity</code></a> node unserializable.</p> |
|
|
</div> |
|
|
|
|
|
<div class=ed> |
|
|
<p>ISSUE: In HTML5, Firefox 1.5, and Opera 9, not specifying public or system identifier results in empty strings.</p> |
|
|
</div> |
|
|
|
|
|
<p>The <code id=internalSubset>internalSubset</code> attribute of the |
|
|
<a href="#DocumentType"><code>DocumentType</code></a> interface is no longer |
|
|
read$B!>(Bonly.</p> |
|
|
|
|
|
<p>On setting, the attribute <em class=rfc2119>MUST</em> raise a |
|
|
<code>NO_MODIFICATION_ALLOWED_ERR</code> <span class=ed>@@ ref</span> |
|
|
exception if the node is read$B!>(Bonly <span class=ed>@@ ref</span>. |
|
|
Otherwise, it <em class=rfc2119>MUST</em> set the specified value as the value |
|
|
associated to the attribute. No normalization, or lexical validation is |
|
|
performed. <span class=ed>@@ If the new value is <code>null</code>, |
|
|
...</span></p> |
|
|
|
|
|
</div> |
|
|
|
|
1021 |
</div> |
</div> |
1022 |
|
|
1023 |
|
|