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
13
 
14
15
16
hc_nodeInsertBeforeDocFragment
17
Curt Arnold
18
19
    If the "newChild" is a DocumentFragment object then all
20
    its children are inserted in the same order before the
21
    the "refChild".
22
 
23
    Create a DocumentFragment object and populate it with
24
    two Element nodes.   Retrieve the second employee and
25
    insert the newly created DocumentFragment before its
26
    fourth child.   The second employee should now have two
27
    extra children("newChild1" and "newChild2") at
28
    positions fourth and fifth respectively.
29
30
 
31
2002-06-09
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64