OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:setIdAttributeNS
(Results
1 - 25
of
29
) sorted by null
1
2
/external/webkit/LayoutTests/dom/xhtml/level3/core/
elementsetidattributens04.js
79
The method
setIdAttributeNS
declares the attribute specified by local name and namespace URI to be of type ID.
83
Invoke
setIdAttributeNS
on newly added attribute on the third strong element. Verify by calling
85
Call
setIdAttributeNS
with isId=false to reset. Method isId should now return false.
111
strongElem.
setIdAttributeNS
("http://www.netzero.com","newAttr",true);
122
strongElem.
setIdAttributeNS
("http://www.netzero.com","newAttr",false);
elementsetidattributens05.js
79
The method
setIdAttributeNS
declares the attribute specified by local name and namespace URI to be of type ID.
83
Invoke
setIdAttributeNS
on a changed attribute of the third acronym element. Verify by calling
85
Call
setIdAttributeNS
with isId=false to reset. Method isId should now return false.
111
acronymElem.
setIdAttributeNS
("*","title",true);
122
acronymElem.
setIdAttributeNS
("*","title",false);
elementsetidattributens01.js
79
Invoke
setIdAttributeNS
on an existing namespace attribute with a namespace URI and a qualified name. Verify by calling
80
isId on the attribute node and getElementById on document node. Call
setIdAttributeNS
with isId=false to reset.
106
employeeElem.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","dmstc",true);
117
employeeElem.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","dmstc",false);
elementsetidattributens02.js
79
Invoke
setIdAttributeNS
on an existing attribute with a namespace URI and a qualified name. Verify by calling
81
element of typeID. Call
setIdAttributeNS
with isId=false to reset. Method isId should now return false.
107
addressElem.
setIdAttributeNS
(xsiNS,"noNamespaceSchemaLocation",true);
119
addressElem.
setIdAttributeNS
(xsiNS,"noNamespaceSchemaLocation",false);
elementsetidattributens03.js
78
Invoke
setIdAttributeNS
on a newly added namespace attribute on the first em element. Verify by calling
79
isID on the attribute node and getElementById on document node. Call
setIdAttributeNS
with isId=false to reset.
106
employeeIdElem.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","newAttr",true);
117
employeeIdElem.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","newAttr",false);
elementsetidattributens13.js
78
Invoke
setIdAttributeNS
on newly added attribute on the third strong element. Verify by calling
80
Call
setIdAttributeNS
on the same element to reset ID but with a non-existing attribute should generate
107
nameElem.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","newAttr",true);
122
nameElem.
setIdAttributeNS
("http://www.w3.org/XML/1998/namespace","lang",false);
elementsetidattributens09.js
80
The method
setIdAttributeNS
declares the attribute specified by local name and namespace URI to be of type ID.
84
Invoke
setIdAttributeNS
on the xmlns attribute of ent4. Verify that NO_MODIFICATION_ALLOWED_ERR is raised.
114
entElement.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","xmlns",true);
elementsetidattributens10.js
83
Invoke
setIdAttributeNS
on two existing namespace attributes with different values. Verify by calling
111
pElem1.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","dmstc",true);
112
pElem2.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","nm",true);
elementsetidattributens11.js
83
Invoke
setIdAttributeNS
on two existing namespace attributes with same local name but different values. Verify by calling
111
pElem1.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","dmstc",true);
112
pElem2.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","dmstc",true);
elementsetidattributens12.js
83
Set the noNamespaceSchemaLocation attribute on the first acronym element to "No". Invoke
setIdAttributeNS
on the
115
acronymElem1.
setIdAttributeNS
("http://www.w3.org/2001/XMLSchema-instance","noNamespaceSchemaLocation",true);
116
acronymElem2.
setIdAttributeNS
("http://www.w3.org/2001/XMLSchema-instance","noNamespaceSchemaLocation",true);
117
acronymElem3.
setIdAttributeNS
("http://www.w3.org/2001/XMLSchema-instance","noNamespaceSchemaLocation",true);
elementsetidattributens06.js
78
Invoke
setIdAttributeNS
on the third strong element with a non-existing attribute name. Verify that
103
nameElem.
setIdAttributeNS
("http://www.netzero.com","hasMiddleName",true);
elementsetidattributens07.js
78
Invoke
setIdAttributeNS
on the second p element with a non-existing attribute. Verify that
103
employeeElem.
setIdAttributeNS
("http://www.netzero.com","xsi",true);
elementsetidattributens08.js
78
Invoke
setIdAttributeNS
on the second p element with a non-existing attribute. Verify that
103
employeeElem.
setIdAttributeNS
("http://www.usa.com","usa",true);
elementsetidattributens14.js
83
Invoke
setIdAttributeNS
on two existing attributes of the second p element and the third
112
pElem.
setIdAttributeNS
("http://www.w3.org/2000/xmlns/","dmstc",true);
113
acronymElem.
setIdAttributeNS
("http://www.w3.org/2001/XMLSchema-instance","noNamespaceSchemaLocation",true);
attrisid07.js
82
isId returns true. The use of Element.
setIdAttributeNS
() makes 'isId' a user-determined ID attribute.
113
acronymElem.
setIdAttributeNS
("http://www.w3.org/DOM","newAttr",true);
attrisid03.js
105
acronymElem.
setIdAttributeNS
(xmlNS,"lang",false);
attrisid02.js
107
acronymElem.
setIdAttributeNS
(xmlNS,"lang",true);
/libcore/luni/src/main/java/org/w3c/dom/
Element.java
380
* <code>
setIdAttributeNS
</code> method.
412
public void
setIdAttributeNS
(String namespaceURI,
/packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java
163
public void
setIdAttributeNS
(String namespaceURI, String localName,
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java
402
public void
setIdAttributeNS
(String namespaceURI, String localName,