diff --git a/js/tests/e4x/XML/13.4.4.36.js b/js/tests/e4x/XML/13.4.4.36.js index 3ac56da017b2..cf2fc7061fc2 100644 --- a/js/tests/e4x/XML/13.4.4.36.js +++ b/js/tests/e4x/XML/13.4.4.36.js @@ -25,6 +25,7 @@ * Igor Bukanov * Ethan Hugg * Milen Nankov + * Werner Sharp * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or @@ -58,4 +59,12 @@ x.setNamespace("http://bar/"); TEST(2, correct, x); -END(); \ No newline at end of file +var xhtml1NS = new Namespace('http://www.w3.org/1999/xhtml'); +var xhtml = ; +xhtml.setNamespace(xhtml1NS); + +TEST(3, 1, xhtml.namespaceDeclarations().length); + +TEST(4, xhtml1NS, xhtml.namespace()); + +END();