/php-src/ext/dom/tests/modern/html/interactions/ |
H A D | Document_head.phpt | 2 Test Dom\Document::$head 11 var_dump($dom->head?->nodeName); 13 echo "--- After head removal ---\n"; 15 $dom->head->remove(); 16 var_dump($dom->head?->nodeName); 21 var_dump($dom->head?->nodeName); 27 var_dump($dom->head?->nodeName); 51 <head/> 54 var_dump($dom->head); 60 --- After head removal --- [all …]
|
H A D | Dom_Element_insertAdjacentHTML.phpt | 44 <html><head></head><body><p>foo</p><p>bar</p><div>Sample text</div></body></html> 50 <html><head></head><body><div><p>foo</p><p>bar</p>Sample text</div></body></html> 56 <html><head></head><body><div>Sample text<p>foo</p><p>bar</p></div></body></html> 69 <html><head></head><body>text<div>Sample text</div></body></html> 75 <html><head></head><body><div>textSample text</div></body></html> 81 <html><head></head><body><div>Sample texttext</div></body></html> 87 <html><head></head><body><div>Sample text</div>text</body></html> 94 <html><head></head><body><div>Sample text</div></body></html> 100 <html><head></head><body><div>Sample text</div></body></html> 106 <html><head></head><body><div>Sample text</div></body></html> [all …]
|
H A D | noscript.phpt | 35 <!DOCTYPE html><html><head></head><body><noscript><p>hi</p></noscript></body></html> 38 <html><head/><body><noscript><p>hi</p></noscript></body></html> 40 <!DOCTYPE html><html><head></head><body><noscript><p>bye</p></noscript></body></html> 43 <html><head/><body><noscript><p>bye</p></noscript></body></html> 45 <!DOCTYPE html><html><head></head><body><noscript><!-- </noscript> --></noscript></body… 48 <html><head/><body><noscript><!-- </noscript> --></noscript></body></html>
|
/php-src/ext/gd/libgd/ |
H A D | gdcache.c | 63 gdCache_head_t *head; in gdCacheCreate() local 66 head->mru = NULL; in gdCacheCreate() 67 head->size = size; in gdCacheCreate() 71 return head; in gdCacheCreate() 79 elem = head->mru; in gdCacheDelete() 97 elem = head->mru; in gdCacheGet() 107 head->mru = elem; in gdCacheGet() 116 userdata = (*(head->gdCacheFetch)) (&(head->error), keydata); in gdCacheGet() 122 if (i < head->size) in gdCacheGet() 134 elem->next = head->mru; in gdCacheGet() [all …]
|
/php-src/ext/dom/tests/modern/html/parser/ |
H A D | HTMLDocument_fromString_fromFile_LIBXML_HTML_NOIMPLIED.phpt | 29 test("<!-- bar --><head><title>x</title><!-- foo --></head><p>foo</p><!-- bar -->"); 31 test("<head><title>x</title></head><body><p>foo</p></body>"); 40 test("<!-- start --><body><head><html>foo</html></head></body><!-- end -->"); 57 --- Missing html, head --- 66 <!-- bar --><head><title>x</title><!-- foo --></head><p>foo</p><!-- bar --> 69 Testing: <head><title>x</title></head><body><p>foo</p></body> 70 <head><title>x</title></head><body><p>foo</p></body> 72 --- Missing head, body --- 79 --- Missing head --- 85 <html><head><title>x</title></head><!-- foo --><body><p>foo</p></body></html> [all …]
|
H A D | Element_outerHTML.phpt | 26 <html xmlns="http://www.w3.org/1999/xhtml"><head></head><body><div></div> <p></p></body></html> 27 <html><head></head><body><div></div> <p></p></body></html> 29 <html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>invalid�utf-8 <p></p></body></h… 30 <html><head></head><body>invalid�utf-8 <p></p></body></html> 33 <html xmlns="http://www.w3.org/1999/xhtml"><head></head><head><template><p>foo</p></template></head… 34 <html><head></head><head><template><p>foo</p></template></head><body></body></html>
|
H A D | HTMLDocument_fromString_old_dtd.phpt | 11 <head> 12 </head> 27 <!DOCTYPE html><html><head> 28 </head> 35 <html xmlns="http://www.w3.org/1999/xhtml"><head> 36 </head>
|
/php-src/ext/dba/libcdb/ |
H A D | cdb_make.c | 59 c->head = 0; in cdb_make_start() 78 head = c->head; in cdb_make_addend() 79 if (!head || (head->num >= CDB_HPLIST)) { in cdb_make_addend() 81 if (!head) in cdb_make_addend() 83 head->num = 0; in cdb_make_addend() 84 head->next = c->head; in cdb_make_addend() 85 c->head = head; in cdb_make_addend() 87 head->hp[head->num].h = h; in cdb_make_addend() 88 head->hp[head->num].p = c->pos; in cdb_make_addend() 89 ++head->num; in cdb_make_addend() [all …]
|
/php-src/ext/dom/tests/ |
H A D | DOMDocument_saveHTML_variant1.phpt | 10 $head = $doc->createElement('head'); 11 $head = $root->appendChild($head); 13 $title = $head->appendChild($title); 20 <html><head><title>This is the title</title></head></html>
|
H A D | DOMDocument_saveHTML_basic.phpt | 13 $head = $doc->createElement('head'); 14 $head = $root->appendChild($head); 16 $title = $head->appendChild($title); 22 <html><head><title>This is the title</title></head></html>
|
H A D | DOMDocument_saveHTMLFile_formatOutput_gte_2_13.phpt | 19 $head = $doc->createElement('head'); 20 $head = $root->appendChild($head); 22 $title = $head->appendChild($title); 32 <html><head><title>This is the title</title></head></html>
|
H A D | DOMDocument_saveHTML_basic_gte_2_13.phpt | 18 $head = $doc->createElement('head'); 19 $head = $root->appendChild($head); 21 $title = $head->appendChild($title); 31 <html><head><title>This is the title</title></head></html>
|
H A D | DOMDocument_saveHTMLFile_basic.phpt | 18 $head = $doc->createElement('head'); 19 $head = $root->appendChild($head); 21 $title = $head->appendChild($title); 31 <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>This is the t…
|
H A D | DOMDocument_saveHTMLFile_formatOutput.phpt | 19 $head = $doc->createElement('head'); 20 $head = $root->appendChild($head); 22 $title = $head->appendChild($title); 32 <html><head> 35 </head></html>
|
H A D | DOMDocument_saveHTMLFile_invalid_filename.phpt | 14 $head = $doc->createElement('head'); 15 $head = $root->appendChild($head); 17 $title = $head->appendChild($title);
|
H A D | bug69679.phpt | 8 $html = "<!DOCTYPE html><html><head><meta charset='UTF-8'></head><body>U+0000 <span>\x0</span></bod… 14 <html><head><meta charset="UTF-8"></head><body>U+0000 <span></span></body></html>
|
/php-src/ext/tidy/tests/ |
H A D | 010.phpt | 11 var_dump($a->head()); 18 <head> 20 </head> 44 <head> 46 </head> 71 </head> 175 <head> 177 </head> 202 </head> 278 </head> [all …]
|
/php-src/Zend/ |
H A D | zend_llist.c | 26 l->head = NULL; in zend_llist_init() 43 l->head = tmp; in zend_llist_add_element() 56 tmp->next = l->head; in zend_llist_prepend_element() 58 if (l->head) { in zend_llist_prepend_element() 59 l->head->prev = tmp; in zend_llist_prepend_element() 63 l->head = tmp; in zend_llist_prepend_element() 115 l->head = NULL; in zend_llist_destroy() 138 l->head = NULL; in zend_llist_remove_tail() 156 ptr = src->head; in zend_llist_copy() 168 element=l->head; in zend_llist_apply_with_del() [all …]
|
/php-src/ext/dom/tests/modern/spec/ |
H A D | Document_implementation_createHTMLDocument.phpt | 27 <html xmlns="http://www.w3.org/1999/xhtml"><head></head><body></body></html> 31 <html xmlns="http://www.w3.org/1999/xhtml"><head><title></title></head><body></body></html> 35 <html xmlns="http://www.w3.org/1999/xhtml"><head><title>my <title></title></head><body></body…
|
H A D | Node_insertBefore_02.phpt | 8 $dom = Dom\HTMLDocument::createFromString('<!DOCTYPE html><html><head></head><body></body></html>'); 24 <!DOCTYPE html><html><head></head><body></body></html>
|
/php-src/ext/dom/tests/modern/html/serializer/ |
H A D | HTMLDocument_serialize_doctype.phpt | 11 <head> 12 </head> 29 <html xmlns="http://www.w3.org/1999/xhtml"><head> 30 </head> 35 <!DOCTYPE html1234><html><head> 36 </head>
|
H A D | Element_innerHTML.phpt | 8 $dom = DOM\HTMLDocument::createFromString('<!DOCTYPE html><html><head><title>Test</title></head><bo… 10 var_dump($dom->getElementsByTagName('head')[0]->innerHTML); 19 string(76) "<head><title>Test</title></head><body><div></div><p>Hello, World!</p></body>"
|
/php-src/ext/dom/tests/modern/common/ |
H A D | template_indirect_removal.phpt | 12 $head = $dom->head; 14 $head->remove(); 16 unset($head);
|
/php-src/ext/dom/tests/modern/html/encoding/ |
H A D | HTMLDocument_encoding_edge_case_05.phpt | 9 $header = "<!doctype html><html><head><meta charset=\"gb18030\"></head><body>"; 21 string(4112) "<!DOCTYPE html><html><head><meta charset="gb18030"></head><body>AAAAAAAAAAAAAAAAAAAAA…
|
H A D | HTMLDocument_encoding_edge_case_07.phpt | 9 $header = "<!doctype html><html><head><meta charset=\"gb18030\"></head><body>"; 21 string(4112) "<!DOCTYPE html><html><head><meta charset="gb18030"></head><body>AAAAAAAAAAAAAAAAAAAAA…
|