1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/tests/mochitest/dom-level2-core/test_setAttributeNS09.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,144 @@ 1.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"> 1.5 +<html> 1.6 +<head> 1.7 +<META http-equiv="Content-Type" content="text/html; charset=UTF-8"> 1.8 +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 1.9 +<title>http://www.w3.org/2001/DOM-Test-Suite/level2/core/setAttributeNS09</title> 1.10 +<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"> 1.11 +<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> 1.12 +<script type="text/javascript" src="DOMTestCase.js"></script> 1.13 +<script type="text/javascript" src="exclusions.js"></script> 1.14 +<script type="text/javascript"> 1.15 +// expose test function names 1.16 +function exposeTestFunctionNames() 1.17 +{ 1.18 +return ['setAttributeNS09']; 1.19 +} 1.20 + 1.21 +var docsLoaded = -1000000; 1.22 +var builder = null; 1.23 + 1.24 +// 1.25 +// This function is called by the testing framework before 1.26 +// running the test suite. 1.27 +// 1.28 +// If there are no configuration exceptions, asynchronous 1.29 +// document loading is started. Otherwise, the status 1.30 +// is set to complete and the exception is immediately 1.31 +// raised when entering the body of the test. 1.32 +// 1.33 +function setUpPage() { 1.34 + setUpPageStatus = 'running'; 1.35 + try { 1.36 + // 1.37 + // creates test document builder, may throw exception 1.38 + // 1.39 + builder = createConfiguredBuilder(); 1.40 + 1.41 + docsLoaded = 0; 1.42 + 1.43 + var docRef = null; 1.44 + if (typeof(this.doc) != 'undefined') { 1.45 + docRef = this.doc; 1.46 + } 1.47 + docsLoaded += preload(docRef, "doc", "staffNS"); 1.48 + 1.49 + if (docsLoaded == 1) { 1.50 + setUpPage = 'complete'; 1.51 + } 1.52 + } catch(ex) { 1.53 + catchInitializationError(builder, ex); 1.54 + setUpPage = 'complete'; 1.55 + } 1.56 +} 1.57 + 1.58 +// 1.59 +// This method is called on the completion of 1.60 +// each asychronous load started in setUpTests. 1.61 +// 1.62 +// When every synchronous loaded document has completed, 1.63 +// the page status is changed which allows the 1.64 +// body of the test to be executed. 1.65 +function loadComplete() { 1.66 + if (++docsLoaded == 1) { 1.67 + setUpPageStatus = 'complete'; 1.68 + runJSUnitTests(); 1.69 + markTodos(); 1.70 + SimpleTest.finish(); 1.71 + } 1.72 +} 1.73 + 1.74 +var docName = 'setAttributeNS09'; 1.75 + 1.76 + 1.77 +/** 1.78 +* 1.79 + The "setAttributeNS(namespaceURI,qualifiedName,value)" method adds a new attribute. 1.80 + If an attribute with the same local name and namespace URI is already present 1.81 + on the element, its prefix is changed to be the prefix part of the "qualifiedName", 1.82 + and its vale is changed to be the "value" paramter. 1.83 + null value if no previously existing Attr node with the 1.84 + same name was replaced. 1.85 + 1.86 + Add a new attribute to the "emp:address" element. 1.87 + Check to see if the new attribute has been successfully added to the document 1.88 + by getting the attributes value, namespace URI, local Name and prefix. 1.89 + 1.90 +* @author NIST 1.91 +* @author Mary Brady 1.92 +* @see http://www.w3.org/TR/DOM-Level-2-Core/core#ID-ElSetAttrNS 1.93 +*/ 1.94 +function setAttributeNS09() { 1.95 + var success; 1.96 + if(checkInitialization(builder, "setAttributeNS09") != null) return; 1.97 + var localName = "newAttr"; 1.98 + var namespaceURI = "http://www.newattr.com"; 1.99 + var qualifiedName = "emp:newAttr"; 1.100 + var doc; 1.101 + var elementList; 1.102 + var testAddr; 1.103 + var addrAttr; 1.104 + var resultAttr; 1.105 + var resultNamespaceURI; 1.106 + var resultLocalName; 1.107 + var resultPrefix; 1.108 + 1.109 + var docRef = null; 1.110 + if (typeof(this.doc) != 'undefined') { 1.111 + docRef = this.doc; 1.112 + } 1.113 + doc = load(docRef, "doc", "staffNS"); 1.114 + elementList = doc.getElementsByTagName("emp:address"); 1.115 + testAddr = elementList.item(0); 1.116 + assertNotNull("empAddrNotNull",testAddr); 1.117 +testAddr.setAttributeNS(namespaceURI,qualifiedName,"newValue"); 1.118 + addrAttr = testAddr.getAttributeNodeNS(namespaceURI,localName); 1.119 + resultAttr = testAddr.getAttributeNS(namespaceURI,localName); 1.120 + assertEquals("attrValue","newValue",resultAttr); 1.121 + resultNamespaceURI = addrAttr.namespaceURI; 1.122 + 1.123 + assertEquals("nsuri","http://www.newattr.com",resultNamespaceURI); 1.124 + resultLocalName = addrAttr.localName; 1.125 + 1.126 + assertEquals("lname","newAttr",resultLocalName); 1.127 + resultPrefix = addrAttr.prefix; 1.128 + 1.129 + assertEquals("prefix","emp",resultPrefix); 1.130 + 1.131 +} 1.132 + 1.133 +</script> 1.134 +</head> 1.135 +<body> 1.136 +<h2>Test http://www.w3.org/2001/DOM-Test-Suite/level2/core/setAttributeNS09</h2> 1.137 +<p></p> 1.138 +<p> 1.139 +Copyright (c) 2001-2004 World Wide Web Consortium, 1.140 +(Massachusetts Institute of Technology, European Research Consortium 1.141 +for Informatics and Mathematics, Keio University). All 1.142 +Rights Reserved. This work is distributed under the <a href="http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231">W3C(r) Software License</a> in the 1.143 +hope that it will be useful, but WITHOUT ANY WARRANTY; without even 1.144 +the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 1.145 +</p> 1.146 +</body> 1.147 +</html>