/php-src/ext/dom/tests/modern/html/serializer/ |
H A D | HTMLDocument_serialize_attribute_ns.phpt | 10 $root->setAttributeNodeNS($dom->createAttributeNS("http://php.net", "x:foo")); 11 $root->setAttributeNodeNS($dom->createAttributeNS("http://www.w3.org/XML/1998/namespace", "y:id")); 12 $root->setAttributeNodeNS($dom->createAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns")); 13 $root->setAttributeNodeNS($dom->createAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns:f")); 14 $root->setAttributeNodeNS($dom->createAttributeNS("http://www.w3.org/1999/xlink", "z:f"));
|
/php-src/ext/dom/tests/modern/spec/ |
H A D | Document_createAttributeNS.phpt | 2 Document::createAttributeNS() 12 $dom->createAttributeNS($ns, $qname); 21 $attrs[] = $dom->createAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:foo'); 23 $attrs[] = $dom->createAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns'); 25 $attrs[] = $dom->createAttributeNS('urn:a', 'foo:bar'); 26 $attrs[] = $dom->createAttributeNS('urn:a', 'bar:bar'); 27 $attrs[] = $dom->createAttributeNS('http://www.w3.org/2000/xmlns', 'foo:bar'); 58 $attrs[] = $dom->createAttributeNS(null, 'baz1'); 59 $attrs[] = $dom->createAttributeNS(null, 'baz2'); 60 $attrs[] = $dom->createAttributeNS('', 'baz1'); [all …]
|
H A D | Element_setAttributeNode.phpt | 20 $attribute3 = $dom1->createAttributeNS("", "my-ATTRIBUTE"); 26 $attribute4 = $dom1->createAttributeNS("urn:a", "my-attribute"); 30 $attribute5 = $dom1->createAttributeNS("urn:b", "my-attribute");
|
H A D | Node_nodeName.phpt | 13 var_dump($dom->createAttributeNS('http://www.w3.org/1999/xhtml', 'html')->nodeName); 14 var_dump($dom->createAttributeNS('http://www.w3.org/1999/xhtml', 'foo:html')->nodeName); 30 var_dump($dom->createAttributeNS('http://www.w3.org/1999/xhtml', 'html')->nodeName); 31 var_dump($dom->createAttributeNS('http://www.w3.org/1999/xhtml', 'foo:html')->nodeName);
|
H A D | Element_removeAttribute.phpt | 25 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2")); 29 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2")); 37 $attr = $dom->createAttributeNS("urn:a", "Prefix:local2");
|
H A D | Element_setAttributeNode_adoption.phpt | 27 $attr2 = $dom2->createAttributeNS("urn:a", "a:my-attribute"); 32 $attr3 = $dom2->createAttributeNS("urn:b", "a:my-attribute");
|
H A D | Element_getAttribute.phpt | 23 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2")); 31 $attr = $dom->createAttributeNS("urn:a", "Prefix:local2");
|
H A D | Element_getAttributeNode.phpt | 23 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2")); 31 $attr = $dom->createAttributeNS("urn:a", "Prefix:local2");
|
H A D | Element_hasAttribute.phpt | 23 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2")); 31 $attr = $dom->createAttributeNS("urn:a", "Prefix:local2");
|
H A D | Node_isEqualNode_02.phpt | 17 $e2->setAttributeNodeNS($child = $dom->createAttributeNS("http://example.com", "foo:bar"));
|
H A D | Element_getAttributeNS.phpt | 36 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2"));
|
H A D | Element_hasAttributeNS.phpt | 36 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2"));
|
H A D | Element_getAttributeNodeNS.phpt | 38 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2"));
|
H A D | Element_setAttribute_with_namespace.phpt | 33 $container->setAttributeNode($dom->createAttributeNS("urn:b", "in:ns"));
|
H A D | Element_removeAttributeNS.phpt | 67 $body->setAttributeNode($attr = $body->ownerDocument->createAttributeNS("urn:a", "prefix:local2"));
|
/php-src/ext/dom/tests/createAttributeNS_prefix_conflicts/ |
H A D | setAttribute_mixed_prefix.phpt | 2 DOMDocument::createAttributeNS() with prefix name conflict - setAttributeNode variation (DOM Level … 11 var_dump($doc->documentElement->setAttributeNode($doc->createAttributeNS('http://php.net/ns1', 'foo… 12 var_dump($doc->documentElement->setAttributeNode($doc->createAttributeNS('http://php.net/ns1', 'hel…
|
H A D | setAttribute_with_prefix.phpt | 2 DOMDocument::createAttributeNS() with prefix name conflict - setAttributeNode variation (DOM Level … 11 var_dump($doc->documentElement->setAttributeNode($doc->createAttributeNS('http://php.net/ns1', 'foo… 13 var_dump($doc->documentElement->setAttributeNode($doc->createAttributeNS('http://php.net/ns2', 'foo… 15 var_dump($doc->documentElement->setAttributeNode($doc->createAttributeNS('http://php.net/ns3', 'foo… 17 var_dump($doc->documentElement->setAttributeNode($doc->createAttributeNS('http://php.net/ns4', 'foo…
|
H A D | setAttribute_without_prefix.phpt | 2 DOMDocument::createAttributeNS() with prefix name conflict - setAttributeNode variation (DOM Level … 11 var_dump($doc->documentElement->setAttributeNode($doc->createAttributeNS('http://php.net/ns1', 'hel… 13 var_dump($doc->documentElement->setAttributeNode($doc->createAttributeNS('http://php.net/ns2', 'hel… 15 var_dump($doc->documentElement->setAttributeNode($doc->createAttributeNS('http://php.net/ns3', 'hel… 17 var_dump($doc->documentElement->setAttributeNode($doc->createAttributeNS('http://php.net/ns4', 'hel…
|
H A D | setAttributeNS_with_prefix.phpt | 2 DOMDocument::createAttributeNS() with prefix name conflict - setAttributeNodeNS variation, with pre… 11 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns1', 'f… 13 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns2', 'f… 15 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns3', 'f… 17 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns4', 'f…
|
H A D | setAttributeNS_without_prefix.phpt | 2 DOMDocument::createAttributeNS() with prefix name conflict - setAttributeNodeNS variation, without … 11 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns1', 'h… 13 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns2', 'h… 15 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns3', 'h… 17 var_dump($doc->documentElement->setAttributeNodeNS($doc->createAttributeNS('http://php.net/ns4', 'h…
|
/php-src/ext/dom/tests/ |
H A D | setAttributeNodeNS_same_uri_different_prefix.phpt | 14 $attribute = $doc->createAttributeNS('http://php.net/ns1', 'foo:hello'); 18 $attribute = $doc->createAttributeNS('http://php.net/ns1', 'bar:hello'); 22 $attribute = $doc->createAttributeNS('http://php.net/ns1', 'hello');
|
H A D | bug80927.phpt | 11 $a = $dom->createAttributeNS("fake_ns", "test:test"); 28 $a = $dom->createAttributeNS("fake_ns", "test:test");
|
H A D | gh12870.inc | 9 $attr = $d->createAttributeNS($uri, $qualifiedName);
|
H A D | domelement.phpt | 44 $lang = $dom->createAttributeNS('http://www.w3.org/XML/1998/namespace', 'xml:lang');
|
/php-src/ext/dom/tests/delayed_freeing/ |
H A D | namespace_definition_crash_in_attribute.phpt | 10 $child_attr1 = $child->appendChild($doc->createAttributeNS('some:ns2', 'hello')); 15 ->appendChild($doc->createAttributeNS('some:ns', 'hello'));
|