[EMAIL PROTECTED] wrote:
> If I have element with text which has multiple lines, i.e.
>
> <STYLE type=text/css>.serif {
> FONT-SIZE: small; FONT-FAMILY: times,serif
> }
> </STYLE>
>
> Does Neko find out all the text for the node first and then
> create 1 Text node with all the text and then append that node
> to the STYLE node?
If you are using SAX, then multiple callbacks to the characters
method can occur. However, the DOM spec requires that adjacent
text be converted into a single Text node. (This only applies
to the original DOM construction, not subsequent editing in
your application.) Since NekoHTML relies on the DOM-building
code in Xerces2, then that should work just fine.
--
Andy Clark * [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]