| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 Copyright © 2001-2004 World Wide Web Consortium, | 2 Copyright © 2001-2004 World Wide Web Consortium, |
| 4 (Massachusetts Institute of Technology, European Research Consortium | 3 (Massachusetts Institute of Technology, European Research Consortium |
| 5 for Informatics and Mathematics, Keio University). All | 4 for Informatics and Mathematics, Keio University). All |
| 6 Rights Reserved. This work is distributed under the W3C® Software License [1] i
n the | 5 Rights Reserved. This work is distributed under the W3C® Software License [1] i
n the |
| 7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even | 6 hope that it will be useful, but WITHOUT ANY WARRANTY; without even |
| 8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | 7 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 9 | 8 |
| 10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 | 9 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 |
| 11 */ | 10 */ |
| 12 | 11 |
| 13 | |
| 14 | |
| 15 /** | 12 /** |
| 16 * Gets URI that identifies the test. | 13 * Gets URI that identifies the test. |
| 17 * @return uri identifier of test | 14 * @return uri identifier of test |
| 18 */ | 15 */ |
| 19 function getTargetURI() { | 16 function getTargetURI() { |
| 20 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_attrinsertbef
ore7"; | 17 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_attrinsertbef
ore7"; |
| 21 } | 18 } |
| 22 | 19 |
| 23 var docsLoaded = -1000000; | 20 var docsLoaded = -1000000; |
| 24 var builder = null; | 21 var builder = null; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 35 function setUpPage() { | 32 function setUpPage() { |
| 36 setUpPageStatus = 'running'; | 33 setUpPageStatus = 'running'; |
| 37 try { | 34 try { |
| 38 // | 35 // |
| 39 // creates test document builder, may throw exception | 36 // creates test document builder, may throw exception |
| 40 // | 37 // |
| 41 builder = createConfiguredBuilder(); | 38 builder = createConfiguredBuilder(); |
| 42 checkFeature("XML", null); | 39 checkFeature("XML", null); |
| 43 | 40 |
| 44 docsLoaded = 0; | 41 docsLoaded = 0; |
| 45 | 42 |
| 46 var docRef = null; | 43 var docRef = null; |
| 47 if (typeof(this.doc) != 'undefined') { | 44 if (typeof(this.doc) != 'undefined') { |
| 48 docRef = this.doc; | 45 docRef = this.doc; |
| 49 } | 46 } |
| 50 docsLoaded += preload(docRef, "doc", "hc_staff"); | 47 docsLoaded += preload(docRef, "doc", "hc_staff"); |
| 51 | 48 |
| 52 if (docsLoaded == 1) { | 49 if (docsLoaded == 1) { |
| 53 setUpPageStatus = 'complete'; | 50 setUpPageStatus = 'complete'; |
| 54 } | 51 } |
| 55 } catch(ex) { | 52 } catch(ex) { |
| 56 » catchInitializationError(builder, ex); | 53 catchInitializationError(builder, ex); |
| 57 setUpPageStatus = 'complete'; | 54 setUpPageStatus = 'complete'; |
| 58 } | 55 } |
| 59 } | 56 } |
| 60 | 57 |
| 61 | |
| 62 | |
| 63 // | 58 // |
| 64 // This method is called on the completion of | 59 // This method is called on the completion of |
| 65 // each asychronous load started in setUpTests. | 60 // each asychronous load started in setUpTests. |
| 66 // | 61 // |
| 67 // When every synchronous loaded document has completed, | 62 // When every synchronous loaded document has completed, |
| 68 // the page status is changed which allows the | 63 // the page status is changed which allows the |
| 69 // body of the test to be executed. | 64 // body of the test to be executed. |
| 70 function loadComplete() { | 65 function loadComplete() { |
| 71 if (++docsLoaded == 1) { | 66 if (++docsLoaded == 1) { |
| 72 setUpPageStatus = 'complete'; | 67 setUpPageStatus = 'complete'; |
| 73 } | 68 } |
| 74 } | 69 } |
| 75 | 70 |
| 76 | |
| 77 /** | 71 /** |
| 78 * | 72 * |
| 79 Appends a document fragment containing a CDATASection to an attribute. | 73 Appends a document fragment containing a CDATASection to an attribute. |
| 80 | 74 |
| 81 * @author Curt Arnold | 75 * @author Curt Arnold |
| 82 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-6376
46024 | 76 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-6376
46024 |
| 83 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-9522
80727 | 77 * @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-9522
80727 |
| 84 */ | 78 */ |
| 85 function hc_attrinsertbefore7() { | 79 function hc_attrinsertbefore7() { |
| 86 var success; | 80 var success; |
| 87 if(checkInitialization(builder, "hc_attrinsertbefore7") != null) return; | 81 if(checkInitialization(builder, "hc_attrinsertbefore7") != null) return; |
| 88 var doc; | 82 var doc; |
| 89 var acronymList; | 83 var acronymList; |
| 90 var testNode; | 84 var testNode; |
| 91 var attributes; | 85 var attributes; |
| 92 var titleAttr; | 86 var titleAttr; |
| 93 var value; | 87 var value; |
| 94 var terNode; | 88 var terNode; |
| 95 var dayNode; | 89 var dayNode; |
| 96 var docFrag; | 90 var docFrag; |
| 97 var retval; | 91 var retval; |
| 98 var firstChild; | 92 var firstChild; |
| 99 var lastChild; | 93 var lastChild; |
| 100 var refChild = null; | 94 var refChild = null; |
| 101 | 95 |
| 102 | |
| 103 var docRef = null; | 96 var docRef = null; |
| 104 if (typeof(this.doc) != 'undefined') { | 97 if (typeof(this.doc) != 'undefined') { |
| 105 docRef = this.doc; | 98 docRef = this.doc; |
| 106 } | 99 } |
| 107 doc = load(docRef, "doc", "hc_staff"); | 100 doc = load(docRef, "doc", "hc_staff"); |
| 108 acronymList = doc.getElementsByTagName("acronym"); | 101 acronymList = doc.getElementsByTagName("acronym"); |
| 109 testNode = acronymList.item(3); | 102 testNode = acronymList.item(3); |
| 110 attributes = testNode.attributes; | 103 attributes = testNode.attributes; |
| 111 | 104 |
| 112 titleAttr = attributes.getNamedItem("title"); | 105 titleAttr = attributes.getNamedItem("title"); |
| 113 terNode = doc.createTextNode("ter"); | 106 terNode = doc.createTextNode("ter"); |
| 114 | |
| 115 if( | |
| 116 | |
| 117 (builder.contentType == "text/html") | |
| 118 | 107 |
| 119 » ) { | 108 if( |
| 120 » | 109 |
| 121 » { | 110 (builder.contentType == "text/html") |
| 122 » » success = false; | 111 |
| 123 » » try { | 112 ) { |
| 113 |
| 114 { |
| 115 success = false; |
| 116 try { |
| 124 dayNode = doc.createCDATASection("day"); | 117 dayNode = doc.createCDATASection("day"); |
| 125 } | 118 } |
| 126 » » catch(ex) { | 119 catch(ex) { |
| 127 success = (typeof(ex.code) != 'undefined' && ex.code == 9); | 120 success = (typeof(ex.code) != 'undefined' && ex.code == 9); |
| 128 » » } | 121 } |
| 129 » » assertTrue("throw_NOT_SUPPORTED_ERR",success); | 122 assertTrue("throw_NOT_SUPPORTED_ERR",success); |
| 130 » } | 123 } |
| 131 | 124 |
| 132 » } | 125 } |
| 133 » | 126 |
| 134 » » else { | 127 else { |
| 135 » » » dayNode = doc.createCDATASection("day"); | 128 dayNode = doc.createCDATASection("day"); |
| 136 docFrag = doc.createDocumentFragment(); | 129 docFrag = doc.createDocumentFragment(); |
| 137 retval = docFrag.appendChild(terNode); | 130 retval = docFrag.appendChild(terNode); |
| 138 retval = docFrag.appendChild(dayNode); | 131 retval = docFrag.appendChild(dayNode); |
| 139 | 132 |
| 140 » { | 133 { |
| 141 » » success = false; | 134 success = false; |
| 142 » » try { | 135 try { |
| 143 retval = titleAttr.insertBefore(docFrag,refChild); | 136 retval = titleAttr.insertBefore(docFrag,refChild); |
| 144 } | 137 } |
| 145 » » catch(ex) { | 138 catch(ex) { |
| 146 success = (typeof(ex.code) != 'undefined' && ex.code == 3); | 139 success = (typeof(ex.code) != 'undefined' && ex.code == 3); |
| 147 » » } | 140 } |
| 148 » » assertTrue("throw_HIERARCHY_REQUEST_ERR",success); | 141 assertTrue("throw_HIERARCHY_REQUEST_ERR",success); |
| 149 » } | 142 } |
| 150 | 143 |
| 151 » » } | 144 } |
| 152 » | 145 |
| 153 } | 146 } |
| 154 | 147 |
| 155 | |
| 156 | |
| 157 | |
| 158 function runTest() { | 148 function runTest() { |
| 159 hc_attrinsertbefore7(); | 149 hc_attrinsertbefore7(); |
| 160 } | 150 } |
| OLD | NEW |