Home
last modified time | relevance | path

Searched refs:element (Results 226 – 250 of 881) sorted by relevance

12345678910>>...36

/php-src/ext/standard/tests/file/
H A Dbug40501.phpt16 string(%d) "this element contains the delimiter, and ends with an odd number of
19 string(%d) "and it isn't the last element$"
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.h135 lxb_html_document_element_styles_attach(lxb_html_element_t *element);
151 lxb_html_element_t *element,
176 lxb_dom_element_t *element,
181 lxb_dom_element_t *element);
294 lxb_html_document_destroy_element(lxb_dom_element_t *element) in lxb_html_document_destroy_element() argument
296 return lxb_dom_document_destroy_element(element); in lxb_html_document_destroy_element()
340 lxb_html_document_destroy_element_noi(lxb_dom_element_t *element);
/php-src/ext/dom/tests/
H A DDOM4_ParentNode_append_with_attributes.phpt17 $element = $dom->documentElement;
20 $element->append($replacement, $addition);
H A DDOM4_ParentNode_append_wrong_document.phpt16 $element = $dom1->documentElement;
19 $element->$method($dom2->documentElement->firstChild);
H A DDOMComment_construct_basic_001.phpt11 $element = $dom->appendChild(new DOMElement('root'));
14 $comment = $element->appendChild($comment);
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 …]
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>");
/php-src/ext/soap/tests/schema/
H A Dschema086.phpt12 <element name="dateTime" type="dateTime"/>
13 <element name="time" type="time"/>
14 <element name="date" type="date"/>
15 <element name="gYearMonth" type="gYearMonth"/>
16 <element name="gYear" type="gYear"/>
17 <element name="gMonthDay" type="gMonthDay"/>
18 <element name="gDay" type="gDay"/>
19 <element name="gMonth" type="gMonth"/>
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/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/dom/tests/modern/html/interactions/
H A DHTMLDocument_clone.phpt14 $element = $dom2->firstChild;
16 var_dump(get_class($element->ownerDocument));
/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/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/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 41 milliseconds

12345678910>>...36