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
getElementsByTagNameNS11
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 special value "*" as the namespaceURI and "address" as the
30
   localName.
31
   The method should return a NodeList of Elements that have
32
   "address" as the local name.
33
 
34
   This test is derived from getElementsByTagNameNS04
35
36
2002-02-28
37
38
39
40
41
42
43
44
45
46
47
"address"
48
"address"
49
"address"
50
"emp:address"
51
"address"
52
53
54
55
56
57
58
59
60
61