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

Unified Diff: LayoutTests/fast/dom/SelectorAPI/not-supported-namespace-in-selector-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/dom/SelectorAPI/not-supported-namespace-in-selector-expected.txt
diff --git a/LayoutTests/fast/dom/SelectorAPI/not-supported-namespace-in-selector-expected.txt b/LayoutTests/fast/dom/SelectorAPI/not-supported-namespace-in-selector-expected.txt
index 213fbd5c0f36d0fc424e792e50b29362ae96220e..d7124ae8e27f9377c37de5e006424a63c0531137 100644
--- a/LayoutTests/fast/dom/SelectorAPI/not-supported-namespace-in-selector-expected.txt
+++ b/LayoutTests/fast/dom/SelectorAPI/not-supported-namespace-in-selector-expected.txt
@@ -1,36 +1,36 @@
This tests that we throw a NAMESPACE_ERR when parsing a selector string for querySelector and querySelectorAll that contains a namespace.
-PASS: document.querySelector('bbb|pre') throws: NamespaceError: Failed to execute query: 'bbb|pre' contains namespaces, which are not supported.
-PASS: document.querySelectorAll('bbb|pre') throws: NamespaceError: Failed to execute query: 'bbb|pre' contains namespaces, which are not supported.
-PASS: document.body.webkitMatchesSelector('bbb|pre') throws: NamespaceError: Failed to execute query: 'bbb|pre' contains namespaces, which are not supported.
+PASS: document.querySelector('bbb|pre') throws: NamespaceError: Failed to execute 'querySelector' on 'Document': 'bbb|pre' contains namespaces, which are not supported.
+PASS: document.querySelectorAll('bbb|pre') throws: NamespaceError: Failed to execute 'querySelectorAll' on 'Document': 'bbb|pre' contains namespaces, which are not supported.
+PASS: document.body.webkitMatchesSelector('bbb|pre') throws: NamespaceError: Failed to execute 'webkitMatchesSelector' on 'Element': 'bbb|pre' contains namespaces, which are not supported.
PASS: document.querySelector('*|pre') did not throw
PASS: document.querySelectorAll('*|pre') did not throw
PASS: document.body.webkitMatchesSelector('*|pre') did not throw
PASS: document.querySelector('|pre') did not throw
PASS: document.querySelectorAll('|pre') did not throw
PASS: document.body.webkitMatchesSelector('|pre') did not throw
-PASS: document.querySelector('div bbb|pre') throws: NamespaceError: Failed to execute query: 'div bbb|pre' contains namespaces, which are not supported.
-PASS: document.querySelectorAll('div bbb|pre') throws: NamespaceError: Failed to execute query: 'div bbb|pre' contains namespaces, which are not supported.
-PASS: document.body.webkitMatchesSelector('div bbb|pre') throws: NamespaceError: Failed to execute query: 'div bbb|pre' contains namespaces, which are not supported.
+PASS: document.querySelector('div bbb|pre') throws: NamespaceError: Failed to execute 'querySelector' on 'Document': 'div bbb|pre' contains namespaces, which are not supported.
+PASS: document.querySelectorAll('div bbb|pre') throws: NamespaceError: Failed to execute 'querySelectorAll' on 'Document': 'div bbb|pre' contains namespaces, which are not supported.
+PASS: document.body.webkitMatchesSelector('div bbb|pre') throws: NamespaceError: Failed to execute 'webkitMatchesSelector' on 'Element': 'div bbb|pre' contains namespaces, which are not supported.
PASS: document.querySelector('div *|pre') did not throw
PASS: document.querySelectorAll('div *|pre') did not throw
PASS: document.body.webkitMatchesSelector('div *|pre') did not throw
PASS: document.querySelector('div |pre') did not throw
PASS: document.querySelectorAll('div |pre') did not throw
PASS: document.body.webkitMatchesSelector('div |pre') did not throw
-PASS: document.querySelector('[bbb|name=value]') throws: NamespaceError: Failed to execute query: '[bbb|name=value]' contains namespaces, which are not supported.
-PASS: document.querySelectorAll('[bbb|name=value]') throws: NamespaceError: Failed to execute query: '[bbb|name=value]' contains namespaces, which are not supported.
-PASS: document.body.webkitMatchesSelector('[bbb|name=value]') throws: NamespaceError: Failed to execute query: '[bbb|name=value]' contains namespaces, which are not supported.
+PASS: document.querySelector('[bbb|name=value]') throws: NamespaceError: Failed to execute 'querySelector' on 'Document': '[bbb|name=value]' contains namespaces, which are not supported.
+PASS: document.querySelectorAll('[bbb|name=value]') throws: NamespaceError: Failed to execute 'querySelectorAll' on 'Document': '[bbb|name=value]' contains namespaces, which are not supported.
+PASS: document.body.webkitMatchesSelector('[bbb|name=value]') throws: NamespaceError: Failed to execute 'webkitMatchesSelector' on 'Element': '[bbb|name=value]' contains namespaces, which are not supported.
PASS: document.querySelector('[*|name=value]') did not throw
PASS: document.querySelectorAll('[*|name=value]') did not throw
PASS: document.body.webkitMatchesSelector('[*|name=value]') did not throw
PASS: document.querySelector('[|name=value]') did not throw
PASS: document.querySelectorAll('[|name=value]') did not throw
PASS: document.body.webkitMatchesSelector('[|name=value]') did not throw
-PASS: document.querySelector(':-webkit-any(bbb|pre)') throws: NamespaceError: Failed to execute query: ':-webkit-any(bbb|pre)' contains namespaces, which are not supported.
-PASS: document.querySelector('div [bbb|name=value]') throws: NamespaceError: Failed to execute query: 'div [bbb|name=value]' contains namespaces, which are not supported.
-PASS: document.querySelectorAll('div [bbb|name=value]') throws: NamespaceError: Failed to execute query: 'div [bbb|name=value]' contains namespaces, which are not supported.
-PASS: document.body.webkitMatchesSelector('div [bbb|name=value]') throws: NamespaceError: Failed to execute query: 'div [bbb|name=value]' contains namespaces, which are not supported.
+PASS: document.querySelector(':-webkit-any(bbb|pre)') throws: NamespaceError: Failed to execute 'querySelector' on 'Document': ':-webkit-any(bbb|pre)' contains namespaces, which are not supported.
+PASS: document.querySelector('div [bbb|name=value]') throws: NamespaceError: Failed to execute 'querySelector' on 'Document': 'div [bbb|name=value]' contains namespaces, which are not supported.
+PASS: document.querySelectorAll('div [bbb|name=value]') throws: NamespaceError: Failed to execute 'querySelectorAll' on 'Document': 'div [bbb|name=value]' contains namespaces, which are not supported.
+PASS: document.body.webkitMatchesSelector('div [bbb|name=value]') throws: NamespaceError: Failed to execute 'webkitMatchesSelector' on 'Element': 'div [bbb|name=value]' contains namespaces, which are not supported.
PASS: document.querySelector('div [*|name=value]') did not throw
PASS: document.querySelectorAll('div [*|name=value]') did not throw
PASS: document.body.webkitMatchesSelector('div [*|name=value]') did not throw
« no previous file with comments | « LayoutTests/fast/dom/SelectorAPI/dumpNodeList-expected.txt ('k') | LayoutTests/fast/dom/Window/atob-btoa-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698