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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.js

Issue 1988983002: Move the dom directory from web-platform-tests/ to wpt/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 var createElementNS_tests = [ 1 var createElementNS_tests = [
2 /* Arrays with three elements: 2 /* Arrays with three elements:
3 * the namespace argument 3 * the namespace argument
4 * the qualifiedName argument 4 * the qualifiedName argument
5 * the expected exception, or null if none 5 * the expected exception, or null if none
6 */ 6 */
7 [null, undefined, null], 7 [null, undefined, null],
8 [null, "foo", null], 8 [null, "foo", null],
9 [null, "1foo", "INVALID_CHARACTER_ERR"], 9 [null, "1foo", "INVALID_CHARACTER_ERR"],
10 [null, "f1oo", null], 10 [null, "f1oo", null],
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 ["foo:", ":foo", "NAMESPACE_ERR"], 153 ["foo:", ":foo", "NAMESPACE_ERR"],
154 ["foo:", "f:oo", null], 154 ["foo:", "f:oo", null],
155 ["foo:", "foo:", "NAMESPACE_ERR"], 155 ["foo:", "foo:", "NAMESPACE_ERR"],
156 ["foo:", "xml", null], 156 ["foo:", "xml", null],
157 ["foo:", "xmlns", "NAMESPACE_ERR"], 157 ["foo:", "xmlns", "NAMESPACE_ERR"],
158 ["foo:", "xmlfoo", null], 158 ["foo:", "xmlfoo", null],
159 ["foo:", "xml:foo", "NAMESPACE_ERR"], 159 ["foo:", "xml:foo", "NAMESPACE_ERR"],
160 ["foo:", "xmlns:foo", "NAMESPACE_ERR"], 160 ["foo:", "xmlns:foo", "NAMESPACE_ERR"],
161 ["foo:", "xmlfoo:bar", null], 161 ["foo:", "xmlfoo:bar", null],
162 ] 162 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698