[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: DOM in c
- From: John Cowan <cowan@mercury.ccil.org>
- To: "Michael B. Allen" <mballen@erols.com>
- Date: Sun, 08 Jul 2001 01:32:11 -0400 (EDT)
Michael B. Allen scripsit:
> My question is -- if freeing a node entails recursively freeing all it's
> children, when inserting a DocumentFragment must I clone all children
> first? If I do not, freeing the DocumentFragment would then recursively
> delete the node just inserted into the tree.
When you insert a DocFrag, it's actually its children that get inserted
by moving them from the DocFrag to the main tree. The DocFrag is then
childless.
--
John Cowan cowan@ccil.org
One art/there is/no less/no more/All things/to do/with sparks/galore
--Douglas Hofstadter
- References:
- DOM in c
- From: "Michael B. Allen" <mballen@erols.com>