Lines Matching refs:namespaceURI
213 /* the qualifiedName has a prefix and the namespaceURI is null */
224 /* the qualifiedName has a prefix that is "xml" and the namespaceURI
227 print "26 DOMDocument::createElementNS('http://wrong.namespaceURI.com', 'xml:valid')\n";
230 $dom->createElementNS('http://wrong.namespaceURI.com', 'xml:valid');
236 print "27 DOMElement::__construct('xml:valid', '', 'http://wrong.namespaceURI.com')\n";
238 $element = new DomElement('xml:valid', '', 'http://wrong.namespaceURI.com');
260 /* the qualifiedName or its prefix is "xmlns" and the namespaceURI is
263 print "30 DOMDocument::createElementNS('http://wrong.namespaceURI.com', 'xmlns:valid')\n";
266 $dom->createElementNS('http://wrong.namespaceURI.com', 'xmlns:valid');
272 print "31 DOMElement::__construct('xmlns:valid', '', 'http://wrong.namespaceURI.com')\n";
274 $element = new DomElement('xmlns:valid', '', 'http://wrong.namespaceURI.com');
297 /* the namespaceURI is "http://www.w3.org/2000/xmlns/" and neither the
371 26 DOMDocument::createElementNS('http://wrong.namespaceURI.com', 'xml:valid')
373 27 DOMElement::__construct('xml:valid', '', 'http://wrong.namespaceURI.com')
377 30 DOMDocument::createElementNS('http://wrong.namespaceURI.com', 'xmlns:valid')
379 31 DOMElement::__construct('xmlns:valid', '', 'http://wrong.namespaceURI.com')