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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/xpath/invalid-functions-expected.txt
diff --git a/LayoutTests/fast/xpath/invalid-functions-expected.txt b/LayoutTests/fast/xpath/invalid-functions-expected.txt
index 2f63336194b7a3648c19081de32457fec365bdd6..b40a86ad11a27ac2852c5d941f23b82d8c3c911b 100644
--- a/LayoutTests/fast/xpath/invalid-functions-expected.txt
+++ b/LayoutTests/fast/xpath/invalid-functions-expected.txt
@@ -1,12 +1,12 @@
-PASS document.createExpression("foobar()", null) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPathExpression': The string 'foobar()' is not a valid XPath expression..
-PASS document.evaluate("foobar()", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPathExpression': The string 'foobar()' is not a valid XPath expression..
-PASS document.createExpression("position(//div)", null) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPathExpression': The string 'position(//div)' is not a valid XPath expression..
-PASS document.evaluate("position(//div)", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPathExpression': The string 'position(//div)' is not a valid XPath expression..
-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..
-PASS document.evaluate("ceiling(1,2)", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPathExpression': The string 'ceiling(1,2)' is not a valid XPath expression..
-PASS document.createExpression("ceiling(1,2)", null).evaluate(document, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPathExpression': The string 'ceiling(1,2)' is not a valid XPath expression..
-PASS document.createExpression("boolean()", null) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPathExpression': The string 'boolean()' is not a valid XPath expression..
-PASS document.evaluate("boolean()", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'createExpression' on 'XPathExpression': The string 'boolean()' is not a valid XPath expression..
+PASS document.createExpression("foobar()", null) threw exception SyntaxError: Failed to execute 'createExpression' on 'Document': The string 'foobar()' is not a valid XPath expression..
+PASS document.evaluate("foobar()", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'evaluate' on 'Document': The string 'foobar()' is not a valid XPath expression..
+PASS document.createExpression("position(//div)", null) threw exception SyntaxError: Failed to execute 'createExpression' on 'Document': The string 'position(//div)' is not a valid XPath expression..
+PASS document.evaluate("position(//div)", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'evaluate' on 'Document': The string 'position(//div)' is not a valid XPath expression..
+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..
+PASS document.evaluate("ceiling(1,2)", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'evaluate' on 'Document': The string 'ceiling(1,2)' is not a valid XPath expression..
+PASS document.createExpression("ceiling(1,2)", null).evaluate(document, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'createExpression' on 'Document': The string 'ceiling(1,2)' is not a valid XPath expression..
+PASS document.createExpression("boolean()", null) threw exception SyntaxError: Failed to execute 'createExpression' on 'Document': The string 'boolean()' is not a valid XPath expression..
+PASS document.evaluate("boolean()", document, null, XPathResult.ANY_TYPE, null) threw exception SyntaxError: Failed to execute 'evaluate' on 'Document': The string 'boolean()' is not a valid XPath expression..
PASS successfullyParsed is true
TEST COMPLETE
« 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