/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_notationsremovenameditem1.js | 89 var notations; 109 notations = docType.notations; 111 assertNotNull("notationsNotNull",notations); 116 retval = notations.removeNamedItem("notation1");
|
hc_notationssetnameditem1.js | 79 An attempt to add an element to the named node map returned by notations should 90 var notations; 111 notations = docType.notations; 113 assertNotNull("notationsNotNull",notations); 117 retval = notations.setNamedItem(elem);
|
/external/webkit/LayoutTests/dom/html/level2/core/ |
hc_notationsremovenameditemns1.js | 89 var notations; 109 notations = docType.notations; 111 assertNotNull("notationsNotNull",notations); 114 retval = notations.removeNamedItemNS("http://www.w3.org/1999/xhtml","alpha");
|
hc_notationssetnameditemns1.js | 78 An attempt to add an element to the named node map returned by notations should 89 var notations; 110 notations = docType.notations; 112 assertNotNull("notationsNotNull",notations); 116 retval = notations.setNamedItemNS(elem);
|
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
hc_notationsremovenameditem1.js | 89 var notations; 109 notations = docType.notations; 111 assertNotNull("notationsNotNull",notations); 116 retval = notations.removeNamedItem("notation1");
|
hc_notationssetnameditem1.js | 79 An attempt to add an element to the named node map returned by notations should 90 var notations; 111 notations = docType.notations; 113 assertNotNull("notationsNotNull",notations); 117 retval = notations.setNamedItem(elem);
|
/external/webkit/LayoutTests/dom/xhtml/level2/core/ |
hc_notationsremovenameditemns1.js | 89 var notations; 109 notations = docType.notations; 111 assertNotNull("notationsNotNull",notations); 114 retval = notations.removeNamedItemNS("http://www.w3.org/1999/xhtml","alpha");
|
hc_notationssetnameditemns1.js | 78 An attempt to add an element to the named node map returned by notations should 89 var notations; 110 notations = docType.notations; 112 assertNotNull("notationsNotNull",notations); 116 retval = notations.setNamedItemNS(elem);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
HCNotationsSetNamedItemNS.java | 30 * An attempt to add an element to the named node map returned by notations 70 NamedNodeMap notations; local 79 notations = docType.getNotations(); 80 assertNotNull("notationsNotNull", notations); 84 notations.setNamedItemNS(elem);
|
HCNotationsRemoveNamedItemNS.java | 69 NamedNodeMap notations; local 77 notations = docType.getNotations(); 78 assertNotNull("notationsNotNull", notations); 81 notations.removeNamedItemNS("http://www.w3.org/1999/xhtml",
|
NamedNodeMapSetNamedItemNS.java | 195 // NamedNodeMap notations; 203 // notations = docType.getNotations(); 204 // assertNotNull("notationsNotNull", notations); 206 // notation = (Notation) notations.getNamedItem("notation1"); 221 // notations.setNamedItemNS(notation); 312 // NamedNodeMap notations; 317 // notations = docType.getNotations(); 333 // notations.setNamedItemNS(attr); 377 // NamedNodeMap notations; 385 // notations = docType.getNotations() [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
namednodemapgetnameditemns01.java | 35 * from a NamedNodeMap of this DocumentTypes entities and notations. 36 * Both should be null since entities and notations are not namespaced. 75 NamedNodeMap notations; local 86 notations = docType.getNotations(); 87 assertNotNull("notationsNotNull", notations); 90 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
|
getNamedItemNS04.java | 65 NamedNodeMap notations; local 71 notations = docType.getNotations(); 72 assertNotNull("notationsNotNull", notations); 73 notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
|
hc_notationssetnameditemns1.java | 31 * An attempt to add an element to the named node map returned by notations should 60 NamedNodeMap notations; local 71 notations = docType.getNotations(); 72 assertNotNull("notationsNotNull", notations); 76 retval = notations.setNamedItemNS(elem);
|
namednodemapsetnameditemns11.java | 38 * Since notations nodes do not belong in the attribute node map a HIERARCHY_REQUEST_ERR 75 NamedNodeMap notations; local 85 notations = docType.getNotations(); 86 assertNotNull("notationsNotNull", notations); 87 notation = (Notation) notations.getNamedItem("notation1");
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
nodenotationnodeattributes.java | 64 NamedNodeMap notations; local 70 notations = docType.getNotations(); 71 assertNotNull("notationsNotNull", notations); 72 notationNode = notations.getNamedItem("notation1");
|
nodenotationnodetype.java | 64 NamedNodeMap notations; local 70 notations = docType.getNotations(); 71 assertNotNull("notationsNotNull", notations); 72 notationNode = (Notation) notations.getNamedItem("notation1");
|
nodenotationnodevalue.java | 65 NamedNodeMap notations; local 71 notations = docType.getNotations(); 72 assertNotNull("notationsNotNull", notations); 73 notationNode = notations.getNamedItem("notation1");
|
notationgetpublicid.java | 62 NamedNodeMap notations; local 68 notations = docType.getNotations(); 69 assertNotNull("notationsNotNull", notations); 70 notationNode = (Notation) notations.getNamedItem("notation1");
|
notationgetsystemidnull.java | 63 NamedNodeMap notations; local 69 notations = docType.getNotations(); 70 assertNotNull("notationsNotNull", notations); 71 notationNode = (Notation) notations.getNamedItem("notation1");
|
hc_notationssetnameditem1.java | 31 * An attempt to add an element to the named node map returned by notations should 63 NamedNodeMap notations; local 74 notations = docType.getNotations(); 75 assertNotNull("notationsNotNull", notations); 79 retval = notations.setNamedItem(elem);
|
hc_notationsremovenameditem1.java | 62 NamedNodeMap notations; local 72 notations = docType.getNotations(); 73 assertNotNull("notationsNotNull", notations); 78 retval = notations.removeNamedItem("notation1");
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
noderemovechild07.js | 78 Attempts to remove a notation from a Document node. Since notations are children of 93 var notations; 104 notations = docType.notations; 106 notation = notations.getNamedItem("notation1");
|
nodegetfeature13.js | 93 var notations; 104 notations = doctype.notations; 106 node = notations.getNamedItem("notation1");
|
nodesetuserdata07.js | 93 var notations; 110 notations = docType.notations; 112 notation = notations.getNamedItem("notation1");
|