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

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

Issue 99083002: WIP: Migrate generated bindings to new ExceptionState constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 7 years 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
OLDNEW
1 PASS document.createExpression("foobar()", null) threw exception SyntaxError: Fa iled to execute 'createExpression' on 'XPathExpression': The string 'foobar()' i s not a valid XPath expression.. 1 PASS document.createExpression("foobar()", null) threw exception SyntaxError: Fa iled to execute 'createExpression' on 'Document': The string 'foobar()' is not a valid XPath expression..
2 PASS document.evaluate("foobar()", document, null, XPathResult.ANY_TYPE, null) t hrew exception SyntaxError: Failed to execute 'createExpression' on 'XPathExpres sion': The string 'foobar()' is not a valid XPath expression.. 2 PASS document.evaluate("foobar()", document, null, XPathResult.ANY_TYPE, null) t hrew exception SyntaxError: Failed to execute 'evaluate' on 'Document': The stri ng 'foobar()' is not a valid XPath expression..
3 PASS document.createExpression("position(//div)", null) threw exception SyntaxEr ror: Failed to execute 'createExpression' on 'XPathExpression': The string 'posi tion(//div)' is not a valid XPath expression.. 3 PASS document.createExpression("position(//div)", null) threw exception SyntaxEr ror: Failed to execute 'createExpression' on 'Document': The string 'position(// div)' is not a valid XPath expression..
4 PASS document.evaluate("position(//div)", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPat hExpression': The string 'position(//div)' is not a valid XPath expression.. 4 PASS document.evaluate("position(//div)", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'evaluate' on 'Document': T he string 'position(//div)' is not a valid XPath expression..
5 PASS document.createExpression("ceiling(1,2)", null) threw exception SyntaxError : Failed to execute 'createExpression' on 'XPathExpression': The string 'ceiling (1,2)' is not a valid XPath expression.. 5 PASS document.createExpression("ceiling(1,2)", null) threw exception SyntaxError : Failed to execute 'createExpression' on 'Document': The string 'ceiling(1,2)' is not a valid XPath expression..
6 PASS document.evaluate("ceiling(1,2)", document, null, XPathResult.ANY_TYPE, nul l) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPathEx pression': The string 'ceiling(1,2)' is not a valid XPath expression.. 6 PASS document.evaluate("ceiling(1,2)", document, null, XPathResult.ANY_TYPE, nul l) threw exception SyntaxError: Failed to execute 'evaluate' on 'Document': The string 'ceiling(1,2)' is not a valid XPath expression..
7 PASS document.createExpression("ceiling(1,2)", null).evaluate(document, XPathRes ult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'createExpres sion' on 'XPathExpression': The string 'ceiling(1,2)' is not a valid XPath expre ssion.. 7 PASS document.createExpression("ceiling(1,2)", null).evaluate(document, XPathRes ult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'createExpres sion' on 'Document': The string 'ceiling(1,2)' is not a valid XPath expression..
8 PASS document.createExpression("boolean()", null) threw exception SyntaxError: F ailed to execute 'createExpression' on 'XPathExpression': The string 'boolean()' is not a valid XPath expression.. 8 PASS document.createExpression("boolean()", null) threw exception SyntaxError: F ailed to execute 'createExpression' on 'Document': The string 'boolean()' is not a valid XPath expression..
9 PASS document.evaluate("boolean()", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPathExpre ssion': The string 'boolean()' is not a valid XPath expression.. 9 PASS document.evaluate("boolean()", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'evaluate' on 'Document': The str ing 'boolean()' is not a valid XPath expression..
10 PASS successfullyParsed is true 10 PASS successfullyParsed is true
11 11
12 TEST COMPLETE 12 TEST COMPLETE
13 13
OLDNEW
« no previous file with comments | « LayoutTests/fast/xpath/attr-namespace-expected.txt ('k') | LayoutTests/fast/xpath/py-dom-xpath/expressions-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698