Home
last modified time | relevance | path

Searched refs:element (Results 251 – 275 of 922) sorted by relevance

1...<<11121314151617181920>>...37

/php-src/ext/dom/tests/
H A DDOMComment_construct_basic_001.phpt11 $element = $dom->appendChild(new DOMElement('root'));
14 $comment = $element->appendChild($comment);
H A DDOM4_DOMNode_after.phpt12 $element = $dom->documentElement->firstElementChild;
15 $element->after(
H A DDOM4_DOMNode_before.phpt12 $element = $dom->documentElement->firstElementChild;
15 $element->before(
H A DDOM4_ChildNode_wrong_document.phpt16 $element = $dom1->documentElement;
19 $element->$method($dom2->documentElement->firstChild);
H A DDOMElement_insertAdjacentElement.phpt15 …$dom->createElement('free')->insertAdjacentElement("beforebegin", $dom->createElement('element')));
16 …mp($dom->createElement('free')->insertAdjacentElement("afterend", $dom->createElement('element')));
19 …_dump($dom->createElement('free')->insertAdjacentElement("bogus", $dom->createElement('element')));
26 $element = $dom->createElement('free');
27 $child = $element->appendChild($dom->createElement('child'));
30 var_dump($child->insertAdjacentElement($where, $element)->tagName);
H A Dbug47530.phpt10 …l xmlns="https://php.net/something" xmlns:ns="https://php.net/whatever"><element ns:foo="https://p…
20 $doc->loadXML('<html xmlns=""><element xmlns:foo="https://php.net/bar"/></html>');
24 $element = $doc->documentElement->firstChild;
25 $element->appendChild($frag);
29 var_dump($element->firstChild->tagName);
30 var_dump($element->firstChild->namespaceURI);
121 <html xmlns="https://php.net/something" xmlns:ns="https://php.net/whatever"><default:element xmlns:…
124 <html xmlns=""><element xmlns:foo="https://php.net/bar"><foo:bar/><bar/></element></html>
H A Dbug42082.phpt15 $doc->loadXML("<element></element>");
H A Ddom_create_element.phpt119 $element = new DomElement('valid');
127 $element = new DomElement('-invalid');
135 $element = new DomElement(' ');
143 $element = new DomElement('prefix:valid');
151 $element = new DomElement('valid', '', 'http://valid.com');
159 $element = new DomElement('prefix:valid', '', 'http://valid.com');
167 $element = new DomElement('-invalid', '', 'http://valid.com');
175 $element = new DomElement('prefix:-invalid', '', 'http://valid.com');
183 $element = new DomElement('prefix:invalid', '', '');
199 $element = new DomElement('-prefix:valid', '', 'http://valid.com');
[all …]
/php-src/ext/dom/tests/modern/html/interactions/
H A DHTMLDocument_clone.phpt14 $element = $dom2->firstChild;
16 var_dump(get_class($element->ownerDocument));
/php-src/ext/dom/tests/modern/token_list/
H A Dtoggle_error.phpt9 $element = $dom->documentElement;
10 $list = $element->classList;
H A DgetIterator.phpt9 $element = $dom->documentElement;
10 $list = $element->classList;
H A Dentities.phpt15 $element = $dom->documentElement;
16 $list = $element->classList;
/php-src/tests/lang/
H A DforeachLoopObjects.004.phpt2 Foreach loop tests - Removing the current element from an iterated object.
14 echo "\nRemoving the current element from an iterated object.\n";
32 Removing the current element from an iterated object.
/php-src/ext/soap/tests/schema/
H A Dschema049.phpt12 <element name="int" type="int"/>
13 <element name="int2" type="int"/>
20 <element name="int2" type="int"/>
H A Dschema033.phpt12 <element name="int" type="int"/>
17 <element name="int" type="int"/>
18 <element name="nest" type="tns:testType2"/>
/php-src/ext/xsl/tests/
H A Dbug54446.phpt18 extension-element-prefixes="sax">
72 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
76 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
82 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
86 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
H A Dbug54446_with_ini.phpt18 extension-element-prefixes="sax">
73 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
77 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
83 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %s element output in %s on li…
87 Warning: XSLTProcessor::transformToXml(): runtime error: file %s line %d element output in %s on li…
/php-src/ext/dom/tests/modern/common/
H A Dtemplate_participation.phpt2 <template> element contents do not participate in DOM
30 echo "Selector should not find div element in shadow DOM: ";
33 echo "XPath should not find div element in shadow DOM:\n";
60 Selector should not find div element in shadow DOM: NULL
61 XPath should not find div element in shadow DOM:
/php-src/ext/simplexml/tests/
H A Dbug38354.phpt14 foreach ($xml->xpath("//*") as $element) {
15 var_dump($element->asXML());
/php-src/ext/dom/tests/modern/spec/
H A DNode_insertBefore_02.phpt2 Dom\Node::insertBefore() with DocumentFragment and a document element
23 Cannot have more than one element child in a document
/php-src/ext/xml/tests/
H A Dgh14834.phpt18 <element hint="hello&apos;world">&foo;<![CDATA[ &amp; ]]><?x &amp; ?></element>
/php-src/ext/dom/lexbor/lexbor/html/tree/insertion_mode/
H A Din_select.c84 lxb_html_element_t *element; in lxb_html_tree_insertion_mode_in_select_option() local
91 element = lxb_html_tree_insert_html_element(tree, token); in lxb_html_tree_insertion_mode_in_select_option()
92 if (element == NULL) { in lxb_html_tree_insertion_mode_in_select_option()
105 lxb_html_element_t *element; in lxb_html_tree_insertion_mode_in_select_optgroup() local
118 element = lxb_html_tree_insert_html_element(tree, token); in lxb_html_tree_insertion_mode_in_select_optgroup()
119 if (element == NULL) { in lxb_html_tree_insertion_mode_in_select_optgroup()
/php-src/ext/standard/tests/array/
H A Darray_push_error2.phpt23 Cannot add element to the array as the next element is already occupied
/php-src/ext/json/tests/
H A Dpass001.1.phpt16 {\"object with 1 member\":[\"array with 1 element\"]},
104 {"object with 1 member":["array with 1 element"]},
149 "jsontext": "{\"object with 1 member\":[\"array with 1 element\"]}",
173 string(20) "array with 1 element"
326 string(49) "{"object with 1 member":["array with 1 element"]}"
354 string(20) "array with 1 element"
507 string(49) "{"object with 1 member":["array with 1 element"]}"
539 string(20) "array with 1 element"
692 string(49) "{"object with 1 member":["array with 1 element"]}"
720 string(20) "array with 1 element"
[all …]
H A Dpass001.1_64bit.phpt20 {\"object with 1 member\":[\"array with 1 element\"]},
108 {"object with 1 member":["array with 1 element"]},
153 "jsontext": "{\"object with 1 member\":[\"array with 1 element\"]}",
177 string(20) "array with 1 element"
330 string(49) "{"object with 1 member":["array with 1 element"]}"
358 string(20) "array with 1 element"
511 string(49) "{"object with 1 member":["array with 1 element"]}"
543 string(20) "array with 1 element"
696 string(49) "{"object with 1 member":["array with 1 element"]}"
724 string(20) "array with 1 element"
[all …]

Completed in 23 milliseconds

1...<<11121314151617181920>>...37