Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: LayoutTests/fast/xpath/invalid-functions-expected.txt

Issue 17239008: Remove XPathException (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 PASS document.createExpression("foobar()", null) threw exception INVALID_EXPRESS ION_ERR: The expression had a syntax error or otherwise is not a legal expressio n according to the rules of the specific XPathEvaluator.. 1 PASS document.createExpression("foobar()", null) threw exception SyntaxError: An invalid or illegal string was specified..
2 PASS document.evaluate("foobar()", document, null, XPathResult.ANY_TYPE, null) t hrew exception INVALID_EXPRESSION_ERR: The expression had a syntax error or othe rwise is not a legal expression according to the rules of the specific XPathEval uator.. 2 PASS document.evaluate("foobar()", document, null, XPathResult.ANY_TYPE, null) t hrew exception SyntaxError: An invalid or illegal string was specified..
3 PASS document.createExpression("position(//div)", null) threw exception INVALID_ EXPRESSION_ERR: The expression had a syntax error or otherwise is not a legal ex pression according to the rules of the specific XPathEvaluator.. 3 PASS document.createExpression("position(//div)", null) threw exception SyntaxEr ror: An invalid or illegal string was specified..
4 PASS document.evaluate("position(//div)", document, null, XPathResult.ANY_TYPE, null) threw exception INVALID_EXPRESSION_ERR: The expression had a syntax error or otherwise is not a legal expression according to the rules of the specific XP athEvaluator.. 4 PASS document.evaluate("position(//div)", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: An invalid or illegal string was specified..
5 PASS document.createExpression("ceiling(1,2)", null) threw exception INVALID_EXP RESSION_ERR: The expression had a syntax error or otherwise is not a legal expre ssion according to the rules of the specific XPathEvaluator.. 5 PASS document.createExpression("ceiling(1,2)", null) threw exception SyntaxError : An invalid or illegal string was specified..
6 PASS document.evaluate("ceiling(1,2)", document, null, XPathResult.ANY_TYPE, nul l) threw exception INVALID_EXPRESSION_ERR: The expression had a syntax error or otherwise is not a legal expression according to the rules of the specific XPath Evaluator.. 6 PASS document.evaluate("ceiling(1,2)", document, null, XPathResult.ANY_TYPE, nul l) threw exception SyntaxError: An invalid or illegal string was specified..
7 PASS document.createExpression("ceiling(1,2)", null).evaluate(document, XPathRes ult.ANY_TYPE, null) threw exception INVALID_EXPRESSION_ERR: The expression had a syntax error or otherwise is not a legal expression according to the rules of t he specific XPathEvaluator.. 7 PASS document.createExpression("ceiling(1,2)", null).evaluate(document, XPathRes ult.ANY_TYPE, null) threw exception SyntaxError: An invalid or illegal string wa s specified..
8 PASS document.createExpression("boolean()", null) threw exception INVALID_EXPRES SION_ERR: The expression had a syntax error or otherwise is not a legal expressi on according to the rules of the specific XPathEvaluator.. 8 PASS document.createExpression("boolean()", null) threw exception SyntaxError: A n invalid or illegal string was specified..
9 PASS document.evaluate("boolean()", document, null, XPathResult.ANY_TYPE, null) threw exception INVALID_EXPRESSION_ERR: The expression had a syntax error or oth erwise is not a legal expression according to the rules of the specific XPathEva luator.. 9 PASS document.evaluate("boolean()", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: An invalid or illegal string was specified..
10 PASS successfullyParsed is true 10 PASS successfullyParsed is true
11 11
12 TEST COMPLETE 12 TEST COMPLETE
13 13
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698