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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.html

Issue 2323113002: Revert "Import wpt@65954a35b4e0a5cee1f4839271ba0e44f187c0a6" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.html b/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.html
index 75005a09e2edbb796746b572f54785710473ec53..a13c407e8d3f09a922c5750c900cae84eb278cf3 100644
--- a/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.html
+++ b/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/Document-createElementNS.html
@@ -18,6 +18,7 @@ test(function() {
[null, null, null],
[null, "", "INVALID_CHARACTER_ERR"],
[undefined, null, null],
+ [undefined, undefined, null],
[undefined, "", "INVALID_CHARACTER_ERR"],
["http://example.com/", null, null],
["http://example.com/", "", "INVALID_CHARACTER_ERR"],
@@ -55,7 +56,7 @@ test(function() {
assert_equals(element.nodeName, qualified)
assert_equals(element.namespaceURI, namespace === undefined ? null : namespace)
}
- }, "createElementNS test: " + t.map(format_value))
+ }, "createElementNS test " + i + ": " + t.map(function(el) { return format_value(el) }))
})
})

Powered by Google App Engine
This is Rietveld 408576698