/php-src/ext/phar/tests/tar/ |
H A D | bug49910.phpt | 25 [6] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/Structures_Graph.html 28 [9] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/Structures_Graph_Node.html 32 [13] => phar://*/Structures_Graph-1.0.3/docs/html/Structures_Graph/_Structures_Graph_php.html 34 [15] => phar://*/Structures_Graph-1.0.3/docs/html/classtrees_Structures_Graph.html 35 [16] => phar://*/Structures_Graph-1.0.3/docs/html/elementindex.html 36 [17] => phar://*/Structures_Graph-1.0.3/docs/html/elementindex_Structures_Graph.html 37 [18] => phar://*/Structures_Graph-1.0.3/docs/html/errors.html 38 [19] => phar://*/Structures_Graph-1.0.3/docs/html/index.html 39 [20] => phar://*/Structures_Graph-1.0.3/docs/html/li_Structures_Graph.html 42 [23] => phar://*/Structures_Graph-1.0.3/docs/html/packages.html [all …]
|
/php-src/ext/dom/ |
H A D | config.m4 | 71 $LEXBOR_DIR/html/encoding.c 72 $LEXBOR_DIR/html/interface.c 89 $LEXBOR_DIR/html/interfaces/element.c 146 $LEXBOR_DIR/html/parser.c 147 $LEXBOR_DIR/html/token_attr.c 148 $LEXBOR_DIR/html/token.c 149 $LEXBOR_DIR/html/tokenizer.c 150 $LEXBOR_DIR/html/tokenizer/error.c 156 $LEXBOR_DIR/html/tokenizer/state.c 157 $LEXBOR_DIR/html/tree.c [all …]
|
/php-src/ext/standard/tests/strings/ |
H A D | nl2br_variation4.phpt | 12 //array of html strings 14 "<html>Hello<br />world</html>", 15 "<html><br /></html>", 16 "<html>\nHello\r\nworld\r</html>", 17 "<html>\n \r\n \r</html>", 28 string(29) "<html>Hello<br />world</html>" 29 string(19) "<html><br /></html>" 30 string(45) "<html><br /> 33 </html>" 34 string(37) "<html><br /> [all …]
|
H A D | strip_tags_variation6.phpt | 13 "<html> I am html string </html>".chr(0)."<?php I am php string ?>", 14 "<html> I am html string\0 </html><?php I am php string ?>", 15 "<a>I am html string</a>", 16 "<html>I am html string</html>".decbin(65)."<?php I am php string?>" 33 string(18) " I am html string " 35 string(18) " I am html string " 37 string(16) "I am html string" 39 string(23) "I am html string1000001"
|
H A D | strip_tags_variation5.phpt | 22 <html>hello world</html> 30 <html>hello\r world\t 37 <html>11 < 12. 123 >22</html> 43 <html>This's a string with quotes:</html> 46 <html>this\line is single quoted /with\slashes </html> 79 string(67) "<html>hello world</html> 84 string(44) "<html>hello 86 1111 != 2222</html> 89 string(56) "<html>11 < 12. 123 >22</html> 93 string(150) "<html>This's a string with quotes:</html> [all …]
|
H A D | strip_tags_basic1.phpt | 9 "<html>hello</html>", 10 '<html>hello</html>', 19 "<html><b>hello</b><p>world</p></html>", 20 '<html><b>hello</b><p>world</p></html>', 21 "<html><!-- COMMENT --></html>", 22 '<html><!-- COMMENT --></html>'
|
H A D | strip_tags_basic2.phpt | 8 $string = "<html><p>hello</p><b>world</b><a href=\"#fragment\">Other text</a></html><?php echo hell… 11 "<html>", 12 '<html>', 19 "<html><p><a><?php" 37 string(33) "<html>helloworldOther text</html>" 39 string(33) "<html>helloworldOther text</html>" 53 string(64) "<html><p>hello</p>world<a href="#fragment">Other text</a></html>"
|
/php-src/ext/dom/tests/modern/spec/ |
H A D | Node_nodeName.phpt | 44 string(4) "html" 45 string(8) "foo:html" 48 string(4) "html" 50 string(8) "foo:html" 51 string(4) "html" 52 string(4) "html" 54 string(4) "html" 57 string(4) "html" 58 string(4) "html" 61 string(4) "html" [all …]
|
H A D | Element_tagName.phpt | 15 var_dump($dom->createElementNS('', 'html')->tagName); 31 string(4) "html" 33 string(8) "foo:html" 34 string(4) "html" 35 string(4) "html" 37 string(4) "html" 38 string(4) "html" 39 string(8) "foo:html" 40 string(8) "foo:html" 41 string(4) "html" [all …]
|
H A D | Node_baseURI.phpt | 9 $html = $dom->appendChild($dom->createElement('html')); 10 var_dump($html->baseURI); 12 $dom = Dom\HTMLDocument::createFromFile(__DIR__ . "/../../empty.html", LIBXML_NOERROR); 16 <!DOCTYPE html> 17 <html> 21 </html> 28 string(%d) "file://%sempty.html"
|
H A D | Document_implementation_createHTMLDocument.phpt | 26 <!DOCTYPE html> 27 <html xmlns="http://www.w3.org/1999/xhtml"><head></head><body></body></html> 30 <!DOCTYPE html> 31 <html xmlns="http://www.w3.org/1999/xhtml"><head><title></title></head><body></body></html> 34 <!DOCTYPE html> 35 <html xmlns="http://www.w3.org/1999/xhtml"><head><title>my <title></title></head><body></body…
|
/php-src/ext/dom/tests/ |
H A D | DOMImplementation_createDocumentType_basic.phpt | 8 $doctype = $imp->createDocumentType("html", 11 $doc = $imp->createDocument(null, 'html', $doctype); 14 $doctype = $imp->createDocumentType("html"); 15 $doc = $imp->createDocument(null, 'html', $doctype); 18 $doctype = $imp->createDocumentType("html", "", ""); 19 $doc = $imp->createDocument(null, 'html', $doctype); 25 <html></html> 26 <!DOCTYPE html> 27 <html></html> 28 <!DOCTYPE html> [all …]
|
H A D | gh11288.phpt | 7 $html = <<<HTML 9 <html> 11 </html> 15 $dom->loadHTML($html); 28 $html = <<<HTML 30 <html> 32 </html> 47 $html = <<<HTML 49 <html> 51 </html> [all …]
|
H A D | bug69679.phpt | 8 $html = "<!DOCTYPE html><html><head><meta charset='UTF-8'></head><body>U+0000 <span>\x0</span></bod… 9 $doc->loadHTML($html); 13 <!DOCTYPE html> 14 <html><head><meta charset="UTF-8"></head><body>U+0000 <span></span></body></html>
|
H A D | bug35673.phpt | 7 $html = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 8 <title>This is the title</title></head></html>'; 11 $htmldoc->loadHTML($html); 16 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loos… 17 <html><head> 18 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 20 </head></html>
|
/php-src/ext/dom/tests/modern/html/interactions/ |
H A D | Dom_Element_insertAdjacentHTML.phpt | 15 function test(string $html) { 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> 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 | 10 …Dom\HTMLDocument::createFromString("<!doctype html><html><body><noscript><p>hi</p></noscript></bod… 35 <!DOCTYPE html><html><head></head><body><noscript><p>hi</p></noscript></body></html> 37 <!DOCTYPE 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> 42 <!DOCTYPE html> 43 <html><head/><body><noscript><p>bye</p></noscript></body></html> 45 <!DOCTYPE html><html><head></head><body><noscript><!-- </noscript> --></noscript></body… 47 <!DOCTYPE html> 48 <html><head/><body><noscript><!-- </noscript> --></noscript></body></html>
|
/php-src/ext/dom/tests/modern/html/parser/ |
H A D | HTMLDocument_fromString_fromFile_LIBXML_HTML_NOIMPLIED.phpt | 8 echo "Testing: $html\n"; 33 test("<html>foobar</html>"); 34 test("<html><!-- foo --><title>a</title><p>foo</p></html><!-- bar -->"); 36 test("<html><!-- foo --><body>hi</body></html>"); 68 --- Missing html --- 73 Testing: <html>foobar</html> 74 <html>foobar</html> 76 Testing: <html><!-- foo --><title>a</title><p>foo</p></html><!-- bar --> 77 <html><!-- foo --><title>a</title><p>foo</p></html><!-- bar --> 80 Testing: <html><!-- foo --><body>hi</body></html> [all …]
|
H A D | HTMLDocument_fromString_parser_warning_03.phpt | 8 $html = file_get_contents(__DIR__."/parser_warning_03.html"); 9 $dom = Dom\HTMLDocument::createFromString($html, LIBXML_NOERROR); 14 <!DOCTYPE html><html><head></head><body> 17 </p></body></html>
|
/php-src/ext/dom/tests/modern/html/encoding/ |
H A D | HTMLDocument_createFromFile_http_header.phpt | 20 "/html; Charset=\"ISO-8859-1\"", 22 "tex°t/html; Charset=\"ISO-8859-1\"", 31 "text/html; x=ISO-8859-1", 32 "text/html; x=\"ISO-8859-1\"", 33 "text/html; charet=\"ISO-8859-1\"", 37 "text/html; charset=ISO-8859-1", 47 "text/html;Charset=\"ISO-8859-1", 53 "text/html;Charset=\"foobar\\\"", 54 "text/html;Charset=\"%7F\\\"", 55 "text/html;Charset=\"\\\"", [all …]
|
/php-src/ext/dom/lexbor/patches/ |
H A D | 0002-Track-implied-added-nodes-for-options-use-in-PHP.patch | 7 source/lexbor/html/tree.h | 3 +++ 8 source/lexbor/html/tree/insertion_mode/after_head.c | 1 + 9 source/lexbor/html/tree/insertion_mode/before_head.c | 2 ++ 10 source/lexbor/html/tree/insertion_mode/before_html.c | 2 ++ 13 diff --git a/source/lexbor/html/tree.h b/source/lexbor/html/tree.h 15 --- a/source/lexbor/html/tree.h 16 +++ b/source/lexbor/html/tree.h 27 diff --git a/source/lexbor/html/tree/insertion_mode/after_head.c b/source/lexbor/html/tree/insertio… 29 --- a/source/lexbor/html/tree/insertion_mode/after_head.c 39 diff --git a/source/lexbor/html/tree/insertion_mode/before_head.c b/source/lexbor/html/tree/inserti… [all …]
|
H A D | 0001-Expose-line-and-column-information-for-use-in-PHP.patch | 30 diff --git a/source/lexbor/html/token.h b/source/lexbor/html/token.h 32 --- a/source/lexbor/html/token.h 33 +++ b/source/lexbor/html/token.h 43 diff --git a/source/lexbor/html/tokenizer.c b/source/lexbor/html/tokenizer.c 92 diff --git a/source/lexbor/html/tokenizer.h b/source/lexbor/html/tokenizer.h 105 diff --git a/source/lexbor/html/tokenizer/state.h b/source/lexbor/html/tokenizer/state.h 118 diff --git a/source/lexbor/html/tree.c b/source/lexbor/html/tree.c 120 --- a/source/lexbor/html/tree.c 121 +++ b/source/lexbor/html/tree.c 154 diff --git a/source/lexbor/html/tree/error.c b/source/lexbor/html/tree/error.c [all …]
|
/php-src/ext/tidy/tests/ |
H A D | tidy_error.phpt | 10 $html = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> 11 <html> 18 </html>'; 19 $tidy = tidy_parse_string($html); 24 $html = '<p>paragraph</i>'; 25 $tidy = tidy_parse_string($html); 30 $html = '<bogus>test</bogus>'; 31 $tidy = tidy_parse_string($html);
|
H A D | gh12980.phpt | 7 $html = '<!DOCTYPE html><html lang="en" boolean empty="" selected="selected"></html>'; 10 $tidy->ParseString($html); 17 <!DOCTYPE html> 18 <html lang="en" boolean="" empty="" selected="selected"> 24 </html>
|
/php-src/ext/dom/tests/modern/common/ |
H A D | template_nested.phpt | 8 $html = <<<HTML 9 <!DOCTYPE html> 10 <html> 14 </html> 16 $dom = Dom\HTMLDocument::createFromString($html); 25 <!DOCTYPE html> 26 <html xmlns="http://www.w3.org/1999/xhtml"><head></head><body> 29 </body></html>
|