174 |
aforementioned cases.</p> |
aforementioned cases.</p> |
175 |
</div> |
</div> |
176 |
|
|
177 |
|
<div class=section id=section-node> |
178 |
|
<h3>Modifications to the <code id=Node>Node</code> Interface</h3> |
179 |
|
|
180 |
|
<p>The implementation of the |
181 |
|
<a href="#Node"><code>Node</code></a> interface |
182 |
|
<em class=rfc2119>MUST</em> be modified as following:</p> |
183 |
|
<pre class=idl><code>// Additions to the Node interface |
184 |
|
|
185 |
|
// Additions to the NodeType definition group |
186 |
|
const unsigned short <a href="#ELEMENT_TYPE_DEFINITION_NODE">ELEMENT_TYPE_DEFINITION_NODE</a> = 81001; |
187 |
|
const unsigned short <a href="#ATTRIBUTE_DEFINITION_NODE">ATTRIBUTE_DEFINITION_NODE</a> = 81002; |
188 |
|
</pre> |
189 |
|
|
190 |
|
<p>This specification adds two new types (subinterfaces) of |
191 |
|
<a href="#Node"><code>Node</code></a>: element type definition (node type |
192 |
|
<a href="#ELEMENT_TYPE_DEFINITION_NODE"><code>ELEMENT_TYPE_DEFINITION_NODE</code></a>, |
193 |
|
interface |
194 |
|
<a href="#ElementTypeDefinition"><code>ElementTypeDefinition</code></a>) and |
195 |
|
attribute definition (node type |
196 |
|
<a href="#ATTRIBUTE_DEFINITION_NODE"><code>ATTRIBUTE_DEFINITION_NODE</code></a>, |
197 |
|
interface |
198 |
|
<a href="#AttributeDefinition"><code>AttributeDefinition</code></a>). For |
199 |
|
these kinds of nodes, methods and attributes in the |
200 |
|
<a href="#Node"><code>Node</code></a> interface must behave as following:</p> |
201 |
|
|
202 |
|
<dl> |
203 |
|
<dt><code id=attributes>attributes</code></dt> |
204 |
|
<dd> |
205 |
|
<p>On getting, the attribute <em class=rfc2119>MUST</em> return |
206 |
|
<code>null</code>.</p> |
207 |
|
</dd> |
208 |
|
<dt><code id=baseURI>baseURI</code></dt> |
209 |
|
<dd> |
210 |
|
<p>On getting, the attribute <em class=rfc2119>MUST</em> return the |
211 |
|
value of the <a href="#baseURI"><code>baseURI</code></a> attribute |
212 |
|
of the node in the <code>ownerDocument</code> attribute of the node. |
213 |
|
Note that the value might be <code>null</code>.</p> |
214 |
|
</dd> |
215 |
|
<dt><code id=nodeName>nodeName</code></dt> |
216 |
|
<dd> |
217 |
|
<p>If the node is an |
218 |
|
<a href="#ElementTypeDefinition"><code>ElementTypeDefinition</code></a>: |
219 |
|
On getting, the attribute <em class=rfc2119>MUST</em> return the |
220 |
|
name of the element type definition represented by the node.</p> |
221 |
|
|
222 |
|
<p>If the node is an |
223 |
|
<a href="#AttributeDefinition"><code>AttributeDefinition</code></a>: |
224 |
|
On getting, the attribute <em class=rfc2119>MUST</em> return the |
225 |
|
name of the attribute definition represented by the node.</p> |
226 |
|
</dd> |
227 |
|
<dt><code id=nodeType>nodeType</code></dt> |
228 |
|
<dd> |
229 |
|
<p>On getting, the attribute <em class=rfc2119>MUST</em> return |
230 |
|
<a href="#ELEMENT_TYPE_DEFINITION_NODE"><code>ELEMENT_TYPE_DEFINITION_NODE</code></a> |
231 |
|
(if the node is an |
232 |
|
<a href="#ElementTypeDefinition"><code>ElementTypeDefinition</code></a>) or |
233 |
|
<a href="#ATTRIBUTE_DEFINITION_NODE"><code>ATTRIBUTE_DEFINITION_NODE</code></a> |
234 |
|
(if the node is an |
235 |
|
<a href="#AttributeDefinition"><code>AttributeDefinition</code></a>).</p> |
236 |
|
|
237 |
|
<!-- NodeType --> |
238 |
|
<p>Two constants are added to the <code id=NodeType>NodeType</code> |
239 |
|
definition group of the <a href="#Node"><code>Node</code></a> interface as |
240 |
|
following:</p> |
241 |
|
<table> |
242 |
|
<thead> |
243 |
|
<tr><th scope=col>Name<th scope=col>Value<th scope=col>Description</tr> |
244 |
|
</thead> |
245 |
|
<tbody> |
246 |
|
<tr> |
247 |
|
<th scope=row><dfn id=ELEMENT_TYPE_DEFINITION_NODE class=dom-const><code>ELEMENT_TYPE_DEFINITION_NODE</code></dfn> |
248 |
|
<td><code>81001</code><td>The node is an |
249 |
|
<a href="#ElementTypeDefinition"><code>ElementTypeDefinition</code></a>.</tr> |
250 |
|
<tr> |
251 |
|
<th scope=row><dfn id=ATTRIBUTE_DEFINITION_NODE class=dom-const><code>ATTRIBUTE_DEFINITION_NODE</code></dfn> |
252 |
|
<td><code>81002</code><td>The node is an |
253 |
|
<a href="#ElementTypeDefinition"><code>AttributeDefinition</code></a>.</tr> |
254 |
|
</tbody> |
255 |
|
</table> |
256 |
|
</dd> |
257 |
|
<dt><code id=nodeValue>nodeValue</code> and |
258 |
|
<code id=textContent>textContent</code></dt> |
259 |
|
<dd> |
260 |
|
<p>If the node is an |
261 |
|
<a href="#ElementTypeDefinition"><code>ElementTypeDefinition</code></a>: |
262 |
|
On getting, the attributes <em class=rfc2119>MUST</em> return the |
263 |
|
name of the element type.</p> |
264 |
|
|
265 |
|
<div class="note memo"> |
266 |
|
<p>Thus, on setting the attributes does nothing |
267 |
|
<span class=ed>[DOM3]</span>.</p> |
268 |
|
</div> |
269 |
|
|
270 |
|
<p>On setting, the <a href="#textContent"><code>textContent</code></a> |
271 |
|
attribute <em class=rfc2119>MUST NOT</em> raise a |
272 |
|
<code>NO_MODIFICATION_ALLOWED_ERR</code> <span class=ed>@@ ref</span>. |
273 |
|
<span class=ed>@@ I forgot why this requirement is necessary.</span></p> |
274 |
|
|
275 |
|
<p>If the node is an |
276 |
|
<a href="#AttributeDefinition"><code>AttributeDefinition</code></a>:</p> |
277 |
|
|
278 |
|
<pre class=ed> |
279 |
|
The getter of the [CODE(DOMa)@en[[[nodeValue]]]] attribute |
280 |
|
of an [CODE(DOMi)@en[[[AttributeDefinition]]]] object |
281 |
|
[['''MUST''']] return the normalized default value |
282 |
|
of the attribute. |
283 |
|
|
284 |
|
@@ |
285 |
|
|
286 |
|
[4] The getter of the [CODE(DOMa)@en[[[textContent]]]] |
287 |
|
attribute of an [CODE(DOMi)@en[[[AttributeDefinition]]]] |
288 |
|
object [['''MUST''']] behave as if it were an |
289 |
|
[CODE(DOMi)@en[[[Attr]]]] object. |
290 |
|
|
291 |
|
The setter of the [CODE(DOMa)@en[[[textContent]]]] attribute |
292 |
|
of an [CODE(DOMi)@en[[[AttributeDefinition]]]] object |
293 |
|
[['''MUST''']] behave as if the following algorithm |
294 |
|
is performed: |
295 |
|
= If the [CODE(DOMi)@en[[[AttributeDefinition]]]] |
296 |
|
object is read-only, then throw an |
297 |
|
[CODE(DOMc)@en[[[NO_MODIFICATION_ALLOWED_ERR]]]]. |
298 |
|
= Remove any child node the node has. |
299 |
|
= If the new value is not empty and not [CODE(IDL)@en[[[null]]]], |
300 |
|
then create a [CODE(DOMi)@en[[[Text]]]] node |
301 |
|
whose [CODE(DOMa)@en[[[data]]]] is the new value |
302 |
|
and append it to the [CODE(DOMi)@en[[[AttributeDefinition]]]]. |
303 |
|
</pre> |
304 |
|
</dd> |
305 |
|
<dt class=ed>@@ ...</dt> |
306 |
|
</dl> |
307 |
|
|
308 |
|
</div> |
309 |
|
|
310 |
<div class=section id=section-documentxdoctype> |
<div class=section id=section-documentxdoctype> |
311 |
<h3>The <code>DocumentXDoctype</code> Interface</h3> |
<h3>The <code>DocumentXDoctype</code> Interface</h3> |
312 |
|
|
313 |
|
<p>The <a href="#DocumentXDoctype"><code>DocumentXDoctype</code></a> interface |
314 |
|
<em class=rfc2119>MUST</em> be implemented as following:</p> |
315 |
<pre class=idl><code>interface <dfn id=DocumentXDoctype><code>DocumentXDoctype</code></dfn> { |
<pre class=idl><code>interface <dfn id=DocumentXDoctype><code>DocumentXDoctype</code></dfn> { |
316 |
DocumentType <a href="#createDocumentTypeDefinition">createDocumentTypeDefinition</a> |
DocumentType <a href="#createDocumentTypeDefinition">createDocumentTypeDefinition</a> |
317 |
(in DOMString <a href="#createDocumentTypeDefinition-name"><var>name</var></a>) |
(in DOMString <a href="#createDocumentTypeDefinition-name"><var>name</var></a>) |
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 |
|
|
637 |
|
<p>The |
638 |
|
<a href="#DocumentTypeDefinition"><code>DocumentTypeDefinition</code></a> |
639 |
|
interface <em class=rfc2119>MUST</em> be implemented as following:</p> |
640 |
<pre class=idl><code>interface <dfn id=DocumentTypeDefinition><code>DocumentTypeDefinition</code></dfn> { |
<pre class=idl><code>interface <dfn id=DocumentTypeDefinition><code>DocumentTypeDefinition</code></dfn> { |
641 |
readonly attribute NamedNodeMap <a href="#elementTypes">elementTypes</a>; |
readonly attribute NamedNodeMap <a href="#elementTypes">elementTypes</a>; |
642 |
readonly attribute NamedNodeMap <a href="#generalEntities">generalEntities</a>; |
readonly attribute NamedNodeMap <a href="#generalEntities">generalEntities</a>; |
643 |
readonly attribute NamedNodeMap <a href="#notations">notations</a>; |
readonly attribute NamedNodeMap <a href="#notations">notations</a>; |
644 |
|
|
645 |
<span class=ed>more members come here...</span> |
<a href="#ElementTypeDefinition">ElementTypeDefinition</a> <a href="#getElementTypeDefinitionNode">getElementTypeDefinitionNode</a> |
646 |
|
(in DOMString <a href="#getElementTypeDefinitionNode-name"><var>name</var></a>); |
647 |
|
<a href="#Entity">Entity</a> <a href="#getGeneralEntityNode">getGeneralEntityNode</a> |
648 |
|
(in DOMString <a href="#getGeneralEntityNode-name"><var>name</var></a>); |
649 |
|
<a href="#Notation">Notation</a> <a href="#getNotationNode">getNotationNode</a> |
650 |
|
(in DOMString <a href="#getNotationNode-name"><var>name</var></a>); |
651 |
|
|
652 |
|
void <a href="#setElementTypeDefinitionNode">setElementTypeDefinitionNode</a> |
653 |
|
(in DOMString <a href="#setElementTypeDefinitionNode-node"><var>node</var></a>) |
654 |
|
raises (DOMException); |
655 |
|
void <a href="#setGeneralEntityNode">setGeneralEntityNode</a> |
656 |
|
(in DOMString <a href="#setGeneralEntityNode-node"><var>node</var></a>) |
657 |
|
raises (DOMException); |
658 |
|
void <a href="#setNotationNode">setNotationNode</a> |
659 |
|
(in DOMString <a href="#setNotationNode-node"><var>node</var></a>) |
660 |
|
raises (DOMException); |
661 |
}</code></pre> |
}</code></pre> |
662 |
|
|
663 |
<pre class=ed> |
<pre class=ed> |
784 |
<div class=section id=section-elementtypedefinition> |
<div class=section id=section-elementtypedefinition> |
785 |
<h3>The <code>ElementTypeDefinition</code> Interface</h3> |
<h3>The <code>ElementTypeDefinition</code> Interface</h3> |
786 |
|
|
787 |
|
<p>The <a href="#ElementTypeDefinition"><code>ElementTypeDefinition</code></a> |
788 |
|
interface <em class=rfc2119>MUST</em> be implemented as following:</p> |
789 |
<pre class=idl><code>interface <dfn id=ElementTypeDefinition><code>ElementTypeDefinition</code></dfn> : <a href="#Node">Node</a> { |
<pre class=idl><code>interface <dfn id=ElementTypeDefinition><code>ElementTypeDefinition</code></dfn> : <a href="#Node">Node</a> { |
790 |
readonly attribute <a href="#ownerDocumentTypeDefinition">ownerDocumentTypeDefinition</a>; |
readonly attribute <a href="#ownerDocumentTypeDefinition">ownerDocumentTypeDefinition</a>; |
791 |
|
|
792 |
<span class=ed>@@ more</span> |
<span class=ed>@@ more</span> |
793 |
}</code></pre> |
}</code></pre> |
794 |
|
|
795 |
<pre class=ed>** Modifications to [CODE(DOMi)@en[[[Node]]]] members |
<pre class=ed> |
|
|
|
|
[3] The getter of the [CODE(DOMa)@en[[[attributes]]]] attribute |
|
|
of an [CODE(DOMi)@en[[[ElementTypeDefinition]]]] object |
|
|
[['''MUST''']] return [CODE(IDL)@en[[[null]]]]. |
|
|
|
|
|
[4] The getter of the [CODE(DOMa)@en[[[baseURI]]]] attribute |
|
|
of an [CODE(DOMi)@en[[[ElementTypeDefinition]]]] object |
|
|
[['''MUST''']] return the [CODE(DOMa)@en[[[baseURI]]]] |
|
|
of the [CDOE(DOMa)@en[[[ownerDocument]]]] of the |
|
|
[CODE(DOMi)@en[[[ElementTypeDefinition]]]] object. |
|
|
Note that it might be [CODE(IDL)@en[[[null]]]]. |
|
|
|
|
|
[1] The getter of the [CODE(DOMa)@en[[[nodeName]]]] attribute |
|
|
of an [CODE(DOMi)@en[[[ElementTypeDefinition]]]] object |
|
|
[['''MUST''']] return the name of the element type. |
|
|
|
|
|
[2] The getters of the [CODE(DOMa)@en[[[nodeValue]]]] |
|
|
and [CODE(DOMa)@en[[[textContent]]]] attributes |
|
|
of an [CODE(DOMi)@en[[[ElementTypeDefinition]]]] |
|
|
object [['''MUST''']] return [CODE(IDL)@en[[[null]]]]. |
|
|
|
|
|
;; Thus, the setter of these attributes do nothing. |
|
|
|
|
|
The setter of the [CODE(DOMa)@en[[[textContent]]]] |
|
|
attribute of an [CODE(DOMi)@en[[[ElementTypeDefinition]]]] |
|
|
object [['''MUST NOT''']] throw a |
|
|
[CODE(DOMc)@en[[[NO_MODIFICATION_ALLOWED_ERR]]]]. |
|
|
|
|
|
** The [CODE(DOMi)@en[ElementTypeDefinition]] Interface |
|
|
|
|
|
[5] The |
|
796 |
[DFN@en[[CODE(DOMa)@en[[[ownerDocumentTypeDefinition]]]] attribute]] |
[DFN@en[[CODE(DOMa)@en[[[ownerDocumentTypeDefinition]]]] attribute]] |
797 |
of the [CODE(DOMi)@en[[[ElementTypeDefinition]]]] |
of the [CODE(DOMi)@en[[[ElementTypeDefinition]]]] |
798 |
interface is defined in [[manakai//DOM Extensions]>>50].</pre> |
interface is defined in [[manakai//DOM Extensions]>>50].</pre> |
801 |
<div class=section id=section-attributedefinition> |
<div class=section id=section-attributedefinition> |
802 |
<h3>The <code>AttributeDefinition</code> Interface</h3> |
<h3>The <code>AttributeDefinition</code> Interface</h3> |
803 |
|
|
804 |
|
<p>The <a href="#AttributeDefinition"><code>AttributeDefinition</code></a> |
805 |
|
interface <em class=rfc2119>MUST</em> be implemented as following:</p> |
806 |
<pre class=idl><code>interface <dfn id=AttributeDefinition><code>AttributeDefinition</code></dfn> : <a href="#Node">Node</a> { |
<pre class=idl><code>interface <dfn id=AttributeDefinition><code>AttributeDefinition</code></dfn> : <a href="#Node">Node</a> { |
807 |
<span class=comment>// <a href="#DeclaredValueType">DeclaredValueType</a></span> |
<span class=comment>// <a href="#DeclaredValueType">DeclaredValueType</a></span> |
808 |
const unsigned short <a href="#NO_TYPE_ATTR">NO_TYPE_ATTR</a> = 0; |
const unsigned short <a href="#NO_TYPE_ATTR">NO_TYPE_ATTR</a> = 0; |
826 |
<span class=ed>...</span> |
<span class=ed>...</span> |
827 |
}</code></pre> |
}</code></pre> |
828 |
|
|
|
<pre class=ed>** Modifications to [CODE(DOMi)@en[[[Node]]]] members |
|
|
|
|
|
[3] The getter of the [CODE(DOMa)@en[[[attributes]]]] attribute |
|
|
of an [CODE(DOMi)@en[[[AttributeDefinition]]]] object |
|
|
[['''MUST''']] return [CODE(IDL)@en[[[null]]]]. |
|
|
|
|
|
[9] The getter of the [CODE(DOMa)@en[[[baseURI]]]] attribute |
|
|
of an [CODE(DOMi)@en[[[AttributeDefinition]]]] object |
|
|
[['''MUST''']] return the [CODE(DOMa)@en[[[baseURI]]]] |
|
|
of the [CDOE(DOMa)@en[[[ownerDocument]]]] of the |
|
|
[CODE(DOMi)@en[[[AttributeDefinition]]]] object. |
|
|
Note that it might be [CODE(IDL)@en[[[null]]]]. |
|
|
|
|
|
[1] The getter of the [CODE(DOMa)@en[[[nodeName]]]] attribute |
|
|
of an [CODE(DOMi)@en[[[AttributeDefinition]]]] object |
|
|
[['''MUST''']] return the name of the attribute. |
|
|
|
|
|
[2] The getter of the [CODE(DOMa)@en[[[nodeValue]]]] attribute |
|
|
of an [CODE(DOMi)@en[[[AttributeDefinition]]]] object |
|
|
[['''MUST''']] return the normalized default value |
|
|
of the attribute. |
|
|
|
|
|
@@ |
|
|
|
|
|
[4] The getter of the [CODE(DOMa)@en[[[textContent]]]] |
|
|
attribute of an [CODE(DOMi)@en[[[AttributeDefinition]]]] |
|
|
object [['''MUST''']] behave as if it were an |
|
|
[CODE(DOMi)@en[[[Attr]]]] object. |
|
|
|
|
|
The setter of the [CODE(DOMa)@en[[[textContent]]]] attribute |
|
|
of an [CODE(DOMi)@en[[[AttributeDefinition]]]] object |
|
|
[['''MUST''']] behave as if the following algorithm |
|
|
is performed: |
|
|
= If the [CODE(DOMi)@en[[[AttributeDefinition]]]] |
|
|
object is read-only, then throw an |
|
|
[CODE(DOMc)@en[[[NO_MODIFICATION_ALLOWED_ERR]]]]. |
|
|
= Remove any child node the node has. |
|
|
= If the new value is not empty and not [CODE(IDL)@en[[[null]]]], |
|
|
then create a [CODE(DOMi)@en[[[Text]]]] node |
|
|
whose [CODE(DOMa)@en[[[data]]]] is the new value |
|
|
and append it to the [CODE(DOMi)@en[[[AttributeDefinition]]]]. |
|
|
</pre> |
|
|
|
|
829 |
<dl> |
<dl> |
830 |
<dt><dfn id=ownerElementTypeDefinition class=dom-attr><code>ownerElementTypeDefinition</code></dfn> |
<dt><dfn id=ownerElementTypeDefinition class=dom-attr><code>ownerElementTypeDefinition</code></dfn> |
831 |
of type |
of type |
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> |
|
|
|
|
|
<pre class=idl><code>// Modifications to the DocumentType interface |
|
|
attribute DOMString <a href="#publicId">publicId</a>; |
|
|
attribute DOMString <a href="#systemId">systemId</a>; |
|
|
</code></pre> |
|
|
|
|
|
<p class=ed> |
|
|
The publicId attribute and the systemId attribute of DocumentType, Entity, and Notation objects are now read-write. |
|
|
|
|
|
The setter MUST throw a NO_MODIFICATION_ALLOWED_ERR DOMException if the Node object is read-only. Otherwise, it MUST set the specified value to the attribute. No normalization, lexical validation, or relative reference resolving is performed. null, which represents no public or system identifier is provided, might be specified. |
|
|
|
|
|
Setting public or system identifier does never result in any lexical or logical structure of the document being changed. In particular, no external entity referenced by new identifier will be loaded. |
|
|
|
|
|
Setting an invalid or non-normalized identifier might make the object non-serializable. Setting a non-null public identifier to a DocumentType or Entity object that does not have non-null system identifier or setting null as the system identifier of a DocumentType or Entity object that does have non-null public identifier will make that object non-serializable. |
|
|
|
|
|
ISSUE: In HTML5, Firefox 1.5, and Opera 9, not specifying public or system identifier results in empty strings. |
|
|
</pre> |
|
|
|
|
|
</div> |
|
|
|
|
1021 |
</div> |
</div> |
1022 |
|
|
1023 |
|
|