summaryrefslogtreecommitdiff
path: root/include/dom/bootstrap
Commit message (Collapse)AuthorAgeFilesLines
* Begin implementation of DocumentType classJohn Mark Bell2007-09-191-3/+9
| | | | | | | | | | | | | | | Remove dom_document_set_doctype() -- dom_node_insert_before() (and thus _append_child()) can be used to achieve the same effect. DocumentType node is now a child of the Document node (as it should have been) rather than a hidden field. Make dom_node_destroy() aware of DocumentType nodes potentially having no owner. Make dom_node_finalise() aware of it, too. Make dom_node_get_owner_document() return NULL for Document nodes, as per the spec. Fix bug in dom_node_insert_before() -- previously it failed to catch attempts to insert a second root element. Make dom_node_insert_before() handle DocumentType nodes appropriately. Implement XML binding's dom_implementation_create_document_type() function. Fix XML binding's dom_implementation_create_document() implementation to cope with changed API relating to doctype insertion. Fix up XML parser wrapper to cater for new doctype insertion mechanism. Also sprinkle some NULL about for paranoia purposes. svn path=/trunk/dom/; revision=3551
* Comment fixesJohn Mark Bell2007-07-291-3/+3
| | | | svn path=/trunk/dom/; revision=3470
* Add Document constructorJohn Mark Bell2007-07-281-0/+4
| | | | svn path=/trunk/dom/; revision=3466
* Add ability to set a document's doctype after the document has been createdJohn Mark Bell2007-07-261-0/+7
| | | | svn path=/trunk/dom/; revision=3462
* Add DOMImplementation, DOMImplementationListJohn Mark Bell2007-07-122-0/+274
Add DOMImplementationRegistry Define DOMImplementationSource and provide API to allow their registration This little lot should permit some kind of sensible DOM bootstrapping. svn path=/trunk/dom/; revision=3403