Lines Matching refs:p
14 <p>First p</p>
15 <p>Second p</p>
18 <p>Third p</p>
22 <p>Fourth p</p>
26 <p class="bar">Fifth p</p>
45 test_helper($dom, 'p');
46 test_helper($dom, 'p, img');
47 test_helper($dom, 'body p');
48 test_helper($dom, 'body div p');
50 test_helper($dom, 'div > p');
51 test_helper($dom, 'div > p + img');
52 test_helper($dom, 'div > p ~ img');
54 test_helper($dom, 'div.bar.baz > p');
55 test_helper($dom, 'article[title].bar p');
66 --- Selector: p ---
67 <p xmlns="http://www.w3.org/1999/xhtml">First p</p>
68 <p xmlns="http://www.w3.org/1999/xhtml">Second p</p>
69 <p xmlns="http://www.w3.org/1999/xhtml">Third p</p>
70 <p xmlns="http://www.w3.org/1999/xhtml">Fourth p</p>
71 <p xmlns="http://www.w3.org/1999/xhtml" class="bar">Fifth p</p>
72 --- Selector: p, img ---
73 <p xmlns="http://www.w3.org/1999/xhtml">First p</p>
74 <p xmlns="http://www.w3.org/1999/xhtml">Second p</p>
76 <p xmlns="http://www.w3.org/1999/xhtml">Third p</p>
79 <p xmlns="http://www.w3.org/1999/xhtml">Fourth p</p>
80 <p xmlns="http://www.w3.org/1999/xhtml" class="bar">Fifth p</p>
81 --- Selector: body p ---
82 <p xmlns="http://www.w3.org/1999/xhtml">First p</p>
83 <p xmlns="http://www.w3.org/1999/xhtml">Second p</p>
84 <p xmlns="http://www.w3.org/1999/xhtml">Third p</p>
85 <p xmlns="http://www.w3.org/1999/xhtml">Fourth p</p>
86 <p xmlns="http://www.w3.org/1999/xhtml" class="bar">Fifth p</p>
87 --- Selector: body div p ---
88 <p xmlns="http://www.w3.org/1999/xhtml">Third p</p>
89 <p xmlns="http://www.w3.org/1999/xhtml">Fourth p</p>
91 <p xmlns="http://www.w3.org/1999/xhtml">Third p</p>
95 <p>Fourth p</p>
97 <p xmlns="http://www.w3.org/1999/xhtml">Fourth p</p>
98 --- Selector: div > p ---
99 <p xmlns="http://www.w3.org/1999/xhtml">Third p</p>
100 <p xmlns="http://www.w3.org/1999/xhtml">Fourth p</p>
101 --- Selector: div > p + img ---
103 --- Selector: div > p ~ img ---
108 --- Selector: div.bar.baz > p ---
109 <p xmlns="http://www.w3.org/1999/xhtml">Fourth p</p>
110 --- Selector: article[title].bar p ---
111 <p xmlns="http://www.w3.org/1999/xhtml" class="bar">Fifth p</p>