summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/xpath/node-name-case-sensitivity-expected.txt
blob: f9567f839e55e610ff47fd3237975b5474b9bf81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
strongstrongFOOfoo

HTML //*[@id="sometext"]//strong
PASS res.snapshotLength is 2
HTML //*[@id="sometext"]//Strong
PASS res.snapshotLength is 2
HTML //*[@id="Sometext"]//strong
PASS res.snapshotLength is 0
HTML //*[@id="sometext"]//foo
PASS res.snapshotLength is 2
HTML //*[@id="sometext"]//FOO
PASS res.snapshotLength is 2
XML //*[@id="sometext"]//x:strong
PASS res.snapshotLength is 1
XML //*[@id="sometext"]//x:Strong
PASS res.snapshotLength is 0
XML //*[@id="Sometext"]//x:strong
PASS res.snapshotLength is 0
XML //*[@id="sometext"]//foo
PASS res.snapshotLength is 1
XML //*[@id="sometext"]//FOO
PASS res.snapshotLength is 1
PASS successfullyParsed is true

TEST COMPLETE