1 2/* 3Copyright © 2001-2004 World Wide Web Consortium, 4(Massachusetts Institute of Technology, European Research Consortium 5for Informatics and Mathematics, Keio University). All 6Rights Reserved. This work is distributed under the W3C® Software License [1] in the 7hope that it will be useful, but WITHOUT ANY WARRANTY; without even 8the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 9 10[1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 11*/ 12 13 14 15 /** 16 * Gets URI that identifies the test. 17 * @return uri identifier of test 18 */ 19function getTargetURI() { 20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/nodereplacechild38"; 21 } 22 23var docsLoaded = -1000000; 24var builder = null; 25 26// 27// This function is called by the testing framework before 28// running the test suite. 29// 30// If there are no configuration exceptions, asynchronous 31// document loading is started. Otherwise, the status 32// is set to complete and the exception is immediately 33// raised when entering the body of the test. 34// 35function setUpPage() { 36 setUpPageStatus = 'running'; 37 try { 38 // 39 // creates test document builder, may throw exception 40 // 41 builder = createConfiguredBuilder(); 42 43 docsLoaded = 0; 44 45 var docRef = null; 46 if (typeof(this.doc) != 'undefined') { 47 docRef = this.doc; 48 } 49 docsLoaded += preload(docRef, "doc", "hc_staff"); 50 51 if (docsLoaded == 1) { 52 setUpPageStatus = 'complete'; 53 } 54 } catch(ex) { 55 catchInitializationError(builder, ex); 56 setUpPageStatus = 'complete'; 57 } 58} 59 60 61 62// 63// This method is called on the completion of 64// each asychronous load started in setUpTests. 65// 66// When every synchronous loaded document has completed, 67// the page status is changed which allows the 68// body of the test to be executed. 69function loadComplete() { 70 if (++docsLoaded == 1) { 71 setUpPageStatus = 'complete'; 72 } 73} 74 75 76/** 77* 78 Using replaceChild on an Entity node attempt to replace its Text child with new Text, 79 Comment, ProcessingInstruction and CDATASection nodes and in each case verify if 80 a NO_MODIFICATION_ALLOWED_ERR is raised. 81 82* @author IBM 83* @author Neil Delima 84* @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#ID-785887307 85*/ 86function nodereplacechild38() { 87 var success; 88 if(checkInitialization(builder, "nodereplacechild38") != null) return; 89 var doc; 90 var docType; 91 var entitiesMap; 92 var ent; 93 var oldChild; 94 var entRef; 95 var txt; 96 var elem; 97 var comment; 98 var pi; 99 var cdata; 100 var replaced; 101 102 var docRef = null; 103 if (typeof(this.doc) != 'undefined') { 104 docRef = this.doc; 105 } 106 doc = load(docRef, "doc", "hc_staff"); 107 docType = doc.doctype; 108 109 entitiesMap = docType.entities; 110 111 ent = entitiesMap.getNamedItem("alpha"); 112 assertNotNull("alphaEntity",ent); 113oldChild = ent.firstChild; 114 115 assertNotNull("alphaText",oldChild); 116cdata = doc.createCDATASection("CDATASection"); 117 118 { 119 success = false; 120 try { 121 replaced = ent.replaceChild(cdata,oldChild); 122 } 123 catch(ex) { 124 success = (typeof(ex.code) != 'undefined' && ex.code == 7); 125 } 126 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR1",success); 127 } 128pi = doc.createProcessingInstruction("target","data"); 129 130 { 131 success = false; 132 try { 133 replaced = ent.replaceChild(pi,oldChild); 134 } 135 catch(ex) { 136 success = (typeof(ex.code) != 'undefined' && ex.code == 7); 137 } 138 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR2",success); 139 } 140comment = doc.createComment("Comment"); 141 142 { 143 success = false; 144 try { 145 replaced = ent.replaceChild(comment,oldChild); 146 } 147 catch(ex) { 148 success = (typeof(ex.code) != 'undefined' && ex.code == 7); 149 } 150 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR3",success); 151 } 152txt = doc.createTextNode("Text"); 153 154 { 155 success = false; 156 try { 157 replaced = ent.replaceChild(txt,oldChild); 158 } 159 catch(ex) { 160 success = (typeof(ex.code) != 'undefined' && ex.code == 7); 161 } 162 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR4",success); 163 } 164elem = doc.createElementNS("http://www.w3.org/1999/xhtml","xhtml:p"); 165 166 { 167 success = false; 168 try { 169 replaced = ent.replaceChild(elem,oldChild); 170 } 171 catch(ex) { 172 success = (typeof(ex.code) != 'undefined' && ex.code == 7); 173 } 174 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR5",success); 175 } 176entRef = doc.createEntityReference("delta"); 177 178 { 179 success = false; 180 try { 181 replaced = ent.replaceChild(entRef,oldChild); 182 } 183 catch(ex) { 184 success = (typeof(ex.code) != 'undefined' && ex.code == 7); 185 } 186 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR6",success); 187 } 188 189} 190 191 192 193 194function runTest() { 195 nodereplacechild38(); 196} 197