https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-1004215813 ## Interface `ProcessingInstruction` ### IDL Definition <details> <summary>More</summary> ``` interface ProcessingInstruction : Node { readonly attribute DOMString target; attribute DOMString data; // raises(DOMException) on setting }; ``` </details> ### Attributes - [ ] `readonly attribute DOMString target` - [ ] `attribute DOMString data` ### Overrides - [ ] `Node insertBefore(in Node newChild, in Node refChild)` - [ ] `Node replaceChild(in Node newChild, in Node oldChild)` - [ ] `Node appendChild(in Node newChild)` - [ ] `Node cloneNode(in boolean deep)`
https://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-1004215813
Interface
ProcessingInstructionIDL Definition
More
Attributes
readonly attribute DOMString targetattribute DOMString dataOverrides
Node insertBefore(in Node newChild, in Node refChild)Node replaceChild(in Node newChild, in Node oldChild)Node appendChild(in Node newChild)Node cloneNode(in boolean deep)