Home
last modified time | relevance | path

Searched refs:text (Results 151 – 175 of 833) sorted by path

12345678910>>...34

/php-src/ext/dom/tests/
H A DDOMXPath_quote.phpt16 * Example: $xp->query("//span[contains(text()," . $xp->quote($string) . ")]")
H A DParentNode_append_fragment_text_coalesce.phpt2 Text coalesce bug when appending fragment with text nodes
H A Dbug28721.phpt127 name (value): #text ( t1 )
137 name (value): #text (X)
142 name (value): #text ( t2 )
164 name (value): #text (X)
169 name (value): #text ( t2 )
179 name (value): #text ( t1 )
193 name (value): #text ( t3 )
208 name (value): #text ( t4 )
225 name (value): #text ( t4 )
263 name (value): #text (X)
[all …]
H A Dbug35673.phpt7 $html = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
18 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
H A Dbug46335.phpt8 $text = 'This is an ‘example’ of using DOM splitText';
22 $node = $dom->createTextNode($text);
H A Dbug47530.phpt59 <example:p>More test text</example:p>
60 <test:p>Even more test text</test:p>
139 <example:p>More test text</example:p>
140 <test:p>Even more test text</test:p>
H A Dbug67440.phpt52 echo "-- fragment to document where first element is not a text node --\n"; case3('appendChild'); e…
58 echo "-- fragment to document where first element is not a text node --\n"; case3('insertBefore'); …
64 echo "-- fragment to document where first element is not a text node --\n"; case3('insertBefore'); …
84 -- fragment to document where first element is not a text node --
112 -- fragment to document where first element is not a text node --
140 -- fragment to document where first element is not a text node --
H A Dbug69846.phpt47 string(5) "#text"
163 string(5) "#text"
H A Dbug77686.phpt27 $new_element->textContent = 'my new text';
40 string(11) "my new text"
H A Dbug78221.phpt2 Bug #78221 (DOMNode::normalize() doesn't remove empty text nodes)
H A Dbug80602_4.phpt2 Bug #80602 (Segfault when using DOMChildNode::before()) - after text merge variation
H A Dbug81642.phpt20 // Replace with text node
26 // Replace with text node variant 2
H A Ddom001.phpt113 Node Name: #text
122 Node Name: #text
128 Node Name: #text
144 Node Name: #text
153 Node Name: #text
175 Node Name: #text
231 Node Name: #text
240 Node Name: #text
H A Ddom_xinclude.phpt40 #text
43 #text
H A Ddomchardata.phpt54 $text = new DOMText('some text characters');
56 echo "Whole Text: ".$text->wholeText."\n";
57 $text2 = $text->splitText(9);
60 echo "Split text: ".$text2->wholeText."\n";
74 Whole Text: some text characters
76 Split text: characters
H A Dgh13960.phpt11 $xp->query("//foo[contains(text(), " . $xp->quote("tes\x00t") . ")]");
/php-src/ext/dom/tests/delayed_freeing/
H A Ddocument_fragment.phpt9 $frag->appendChild($doc->createElementNS('some:ns', 'child', 'text content'));
26 string(12) "text content"
28 string(12) "text content"
H A Dgh9628_2.phpt21 …'<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head><body>' .…
H A Dtext_node.phpt2 Delayed freeing text node
10 ->appendChild($doc->createTextNode('my text 1'));
11 $text2 = $doc->documentElement->appendChild($doc->createTextNode('my text 2'));
22 <container>my text 1my text 2</container>
26 my text 1
27 my text 2
/php-src/ext/dom/tests/manually_call_constructor/
H A Dtext.phpt2 Manually call __construct() - text variation
8 $text = new DOMText('my value');
9 var_dump($text->textContent);
10 $text->__construct('my new value');
11 var_dump($text->textContent);
18 $doc->documentElement->appendChild($text);
21 $text->__construct("\nmy new new value");
22 $doc->documentElement->appendChild($text);
/php-src/ext/dom/tests/modern/html/encoding/
H A DHTMLDocument_createFromFile_http_header.phpt21 "text/; 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",
43 "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/tests/modern/html/interactions/
H A Dnoscript.phpt16 echo "--- Modifying the text content: tag ---\n";
24 echo "--- Modifying the text content: trick ---\n";
39 --- Modifying the text content: tag ---
44 --- Modifying the text content: trick ---
/php-src/ext/dom/tests/modern/html/serializer/
H A DHTMLDocument_serialize_roots.phpt17 $text = $container->appendChild($dom->createTextNode("text"));
24 var_dump($dom->saveHtml($text));
33 string(4) "text"
H A DHTMLDocument_serialize_text_01.phpt2 Dom\HTMLDocument serialization escape text 01
10 $p->textContent = "this is <some> &text! \"\"";
15 <html><head></head><body><p>this is &lt;some&gt; &amp;text! ""</p></body></html>
H A DHTMLDocument_serialize_text_02.phpt2 Dom\HTMLDocument serialization escape text 02 - special tags in html namespace

Completed in 38 milliseconds

12345678910>>...34