Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3584 sourcerer 1
2
3
 
4
18
19
20
21
getElementsByTagNameNS14
22
Curt Arnold
23
24
    The "getElementsByTagNameNS(namespaceURI,localName)" method returns a NodeList
25
   of all descendant Elements with a given local name and namespace URI in the
26
   order in which they are encountered in a preorder traversal of this Element tree.
27
 
28
   Create a NodeList of all the descendant elements
29
   using the string "http://www.nist.gov" as the namespaceURI and "address" as the
30
   localName.
31
   The method should return a NodeList whose length is
32
   "3".
33
34
2002-02-28
35
36
37
38
39
40
41
42
43
44
45