Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3584 sourcerer 1
2
3
 
4
18
19
20
21
getElementsByTagNameNS10
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 of the document element
29
   using the "http://www.nist.gov" as the namespaceURI and the special value "*" as the
30
   localName.
31
   The method should return a NodeList of elements that have "http://www.nist.gov
32
   as a namespace URI.
33
 
34
   Derived from getElementsByTagNameNS03
35
36
Curt Arnold
37
2002-02-28
38
39
40
41
42
43
44
45
46
47
48
49
"employee"
50
"employeeId"
51
"name"
52
"position"
53
"salary"
54
"gender"
55
"address"
56
"emp:employee"
57
"emp:employeeId"
58
"emp:position"
59
"emp:salary"
60
"emp:gender"
61
"emp:address"
62
"address"
63
64
65
66
67
68
69
70
71
72