Lines Matching refs:p
8 $dom = Dom\HTMLDocument::createFromString('<p>foo</p>', LIBXML_NOERROR);
9 $p = $dom->body->firstChild;
10 $p->outerHTML = '<div></div> <p>'; // intentionally unclosed
18 $dom->body->outerHTML = '<template><p>foo</p></template>';
19 var_dump($dom->body->querySelector('p')); // Should be NULL because the template contents do not pa…
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>