> Can the renderer of a node be NULL ? Yes, there are several cases where it can happen: * not all Node have renderer (a doctype declaration for example doesn't need a renderer as it's purely declarative) * if you set display: none on the associated Element. * if adding the renderer to the tree would add a child that is not allowed per specification or design of the code.
[See NodeRenderingContext::createRenderer where we handle those cases] Julien _______________________________________________ webkit-help mailing list [email protected] http://lists.webkit.org/mailman/listinfo.cgi/webkit-help
