Skip to content

Commit

Permalink
Add a missing space.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ms2ger committed Jan 7, 2015
1 parent a84b794 commit 166d4e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dom/nodes/Document-Element-getElementsByTagNameNS.js
Expand Up @@ -58,7 +58,7 @@ function test_getElementsByTagNameNS(context, element) {
var t = element.appendChild(document.createElementNS("http://www.w3.org/1999/xhtml", "abc"))
this.add_cleanup(function() {element.removeChild(t)})
assert_array_equals(context.getElementsByTagNameNS("http://www.w3.org/1999/xhtml", "abc"), [t]);
assert_array_equals(context.getElementsByTagNameNS("http://www.w3.org/1999/xhtml", "ABC"), []);
assert_array_equals(context.getElementsByTagNameNS("http://www.w3.org/1999/xhtml", "ABC"), []);
assert_array_equals(context.getElementsByTagNameNS("test", "ABC"), []);
}, "abc element in html namespace")

Expand Down

0 comments on commit 166d4e1

Please sign in to comment.