Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / xpath / evaluate-twice-expected.txt
blob656f7b3601850aa80902cb74d13b5411379cae7b
1 PASS expr.evaluate(doc.documentElement.firstChild, XPathResult.STRING_TYPE, null).stringValue is '1'
2 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue is '1'
3 PASS expr.evaluate(doc.documentElement.firstChild, XPathResult.STRING_TYPE, null).stringValue is '1'
4 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue is '2'
5 PASS expr.evaluate(doc.documentElement.firstChild, XPathResult.STRING_TYPE, null).stringValue is '1'
6 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue is '2'
7 PASS expr.evaluate(doc.documentElement.firstChild, XPathResult.NUMBER_TYPE, null).numberValue is 2
8 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.NUMBER_TYPE, null).numberValue is 3
9 PASS successfullyParsed is true
11 TEST COMPLETE