Home | History | Annotate | Download | only in script-tests

Lines Matching full:processinginstruction

182 var processingInstruction = xmlDoc.createProcessingInstruction('xml-stylesheet', 'type="text/xsl" href="missing.xsl"');
183 shouldBe("processingInstruction.nodeName", "'xml-stylesheet'");
184 shouldBe("processingInstruction.localName", "null");
185 shouldBe("processingInstruction.namespaceURI", "null");
186 shouldBe("processingInstruction.prefix", "null");
187 // DOM Core Level 2 and DOM Core Level 3 disagree on ProcessingInstruction.nodeValue
189 // L3: same as ProcessingInstruction.data
191 shouldBe("processingInstruction.nodeValue", "'type=\"text/xsl\" href=\"missing.xsl\"'");
192 shouldBe("processingInstruction.attributes", "null");
193 shouldBe("processingInstruction.target", "'xml-stylesheet'");
194 shouldBe("processingInstruction.data", "'type=\"text/xsl\" href=\"missing.xsl\"'");