1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<?xml version="1.0" encoding="UTF-8"?>
<!--[ ProcessingInstruction object description ]-->
<!-- $Date: 2001/11/26 22:34:22 $ $Revision: 1.1.1.1 $ -->
<interface name="ProcessingInstruction" inherits="Node" id="ID-1004215813">
<descr><p>The <code>ProcessingInstruction</code> interface
represents a "processing instruction", used in XML
as a way to keep processor-specific information in the text of the
document.</p></descr>
<attribute readonly="yes" type="DOMString" name="target" id="ID-1478689192">
<descr><p>The target of this processing instruction. XML defines this as
being the first <termref def="dt-token">token</termref> following the
markup that begins the processing instruction.</p></descr>
</attribute>
<attribute type="DOMString" name="data" id="ID-837822393">
<descr><p>The content of this processing instruction. This
is from the first non white space character after the target
to the character immediately preceding the <code>?></code>.</p>
</descr>
<setraises>
<exception name="DOMException">
<descr><p>NO_MODIFICATION_ALLOWED_ERR: Raised when the node is
readonly.</p></descr>
</exception>
</setraises>
</attribute>
</interface>
|