/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ gTestfile = '13.4.4.36.js'; START("13.4.4.36 - setNamespace"); TEST(1, true, XML.prototype.hasOwnProperty("setNamespace")); x = one ; correct = one ; x.setNamespace("http://bar/"); TEST(2, correct, x); 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();