diff options
Diffstat (limited to 'LayoutTests/fast/xpath/node-name-case-sensitivity-expected.txt')
-rw-r--r-- | LayoutTests/fast/xpath/node-name-case-sensitivity-expected.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/LayoutTests/fast/xpath/node-name-case-sensitivity-expected.txt b/LayoutTests/fast/xpath/node-name-case-sensitivity-expected.txt new file mode 100644 index 0000000..f9567f8 --- /dev/null +++ b/LayoutTests/fast/xpath/node-name-case-sensitivity-expected.txt @@ -0,0 +1,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 + |