Home
last modified time | relevance | path

Searched refs:createAttributeNS (Results 1 – 25 of 28) sorted by relevance

12

/php-src/ext/dom/tests/modern/html/serializer/
H A DHTMLDocument_serialize_attribute_ns.phpt10 $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 DDocument_createAttributeNS.phpt2 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 DElement_setAttributeNode.phpt20 $attribute3 = $dom1->createAttributeNS("", "my-ATTRIBUTE");
26 $attribute4 = $dom1->createAttributeNS("urn:a", "my-attribute");
30 $attribute5 = $dom1->createAttributeNS("urn:b", "my-attribute");
H A DNode_nodeName.phpt13 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 DElement_removeAttribute.phpt25 $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 DElement_setAttributeNode_adoption.phpt27 $attr2 = $dom2->createAttributeNS("urn:a", "a:my-attribute");
32 $attr3 = $dom2->createAttributeNS("urn:b", "a:my-attribute");
H A DElement_getAttribute.phpt23 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2"));
31 $attr = $dom->createAttributeNS("urn:a", "Prefix:local2");
H A DElement_getAttributeNode.phpt23 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2"));
31 $attr = $dom->createAttributeNS("urn:a", "Prefix:local2");
H A DElement_hasAttribute.phpt23 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2"));
31 $attr = $dom->createAttributeNS("urn:a", "Prefix:local2");
H A DNode_isEqualNode_02.phpt17 $e2->setAttributeNodeNS($child = $dom->createAttributeNS("http://example.com", "foo:bar"));
H A DElement_getAttributeNS.phpt36 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2"));
H A DElement_hasAttributeNS.phpt36 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2"));
H A DElement_getAttributeNodeNS.phpt38 $body->setAttributeNode($attr = $dom->createAttributeNS("urn:a", "prefix:local2"));
H A DElement_setAttribute_with_namespace.phpt33 $container->setAttributeNode($dom->createAttributeNS("urn:b", "in:ns"));
H A DElement_removeAttributeNS.phpt67 $body->setAttributeNode($attr = $body->ownerDocument->createAttributeNS("urn:a", "prefix:local2"));
/php-src/ext/dom/tests/createAttributeNS_prefix_conflicts/
H A DsetAttribute_mixed_prefix.phpt2 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 DsetAttribute_with_prefix.phpt2 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 DsetAttribute_without_prefix.phpt2 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 DsetAttributeNS_with_prefix.phpt2 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 DsetAttributeNS_without_prefix.phpt2 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 DsetAttributeNodeNS_same_uri_different_prefix.phpt14 $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 Dbug80927.phpt11 $a = $dom->createAttributeNS("fake_ns", "test:test");
28 $a = $dom->createAttributeNS("fake_ns", "test:test");
H A Dgh12870.inc9 $attr = $d->createAttributeNS($uri, $qualifiedName);
H A Ddomelement.phpt44 $lang = $dom->createAttributeNS('http://www.w3.org/XML/1998/namespace', 'xml:lang');
/php-src/ext/dom/tests/delayed_freeing/
H A Dnamespace_definition_crash_in_attribute.phpt10 $child_attr1 = $child->appendChild($doc->createAttributeNS('some:ns2', 'hello'));
15 ->appendChild($doc->createAttributeNS('some:ns', 'hello'));

Completed in 29 milliseconds

12