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

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

Issue 2303013002: Add UMA metric to track usage of sending a mousedown to select elements. (Closed)
Patch Set: W3C auto test import CL. 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 a13c407e8d3f09a922c5750c900cae84eb278cf3..75005a09e2edbb796746b572f54785710473ec53 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,7 +18,6 @@ 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"],
@@ -56,7 +55,7 @@ test(function() {
assert_equals(element.nodeName, qualified)
assert_equals(element.namespaceURI, namespace === undefined ? null : namespace)
}
- }, "createElementNS test " + i + ": " + t.map(function(el) { return format_value(el) }))
+ }, "createElementNS test: " + t.map(format_value))
})
})

Powered by Google App Engine
This is Rietveld 408576698