OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 Copyright © 2001-2004 World Wide Web Consortium, | 3 Copyright © 2001-2004 World Wide Web Consortium, |
4 (Massachusetts Institute of Technology, European Research Consortium | 4 (Massachusetts Institute of Technology, European Research Consortium |
5 for Informatics and Mathematics, Keio University). All | 5 for Informatics and Mathematics, Keio University). All |
6 Rights Reserved. This work is distributed under the W3C® Software License [1] i
n the | 6 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 | 7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even |
8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | 8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
9 | 9 |
10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 | 10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 var replacedAttr; | 93 var replacedAttr; |
94 var textContent; | 94 var textContent; |
95 | 95 |
96 var docRef = null; | 96 var docRef = null; |
97 if (typeof(this.doc) != 'undefined') { | 97 if (typeof(this.doc) != 'undefined') { |
98 docRef = this.doc; | 98 docRef = this.doc; |
99 } | 99 } |
100 doc = load(docRef, "doc", "barfoo"); | 100 doc = load(docRef, "doc", "barfoo"); |
101 elem = doc.createElementNS("http://www.w3.org/1999/xhtml","p"); | 101 elem = doc.createElementNS("http://www.w3.org/1999/xhtml","p"); |
102 att = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:la
ng"); | 102 att = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:la
ng"); |
103 replacedAttr = elem.setAttributeNodeNS(att); | 103 replacedAttr = elem.setAttributeNode(att); |
104 attr = elem.getAttributeNodeNS("http://www.w3.org/XML/1998/namespace","lan
g"); | 104 attr = elem.getAttributeNodeNS("http://www.w3.org/XML/1998/namespace","lan
g"); |
105 textContent = attr.textContent; | 105 textContent = attr.textContent; |
106 | 106 |
107 assertEquals("nodegettextcontent08","",textContent); | 107 assertEquals("nodegettextcontent08","",textContent); |
108 | 108 |
109 } | 109 } |
110 | 110 |
111 | 111 |
112 | 112 |
113 | 113 |
114 function runTest() { | 114 function runTest() { |
115 nodegettextcontent08(); | 115 nodegettextcontent08(); |
116 } | 116 } |
OLD | NEW |