summaryrefslogtreecommitdiff
path: root/src/core/document_type.h
Commit message (Collapse)AuthorAgeFilesLines
* Promote ref/unref in dom_node to be inlines.Daniel Silverstone2012-03-281-0/+1
| | | | svn path=/trunk/libdom/; revision=13761
* Documents and document types do not have text contentDaniel Silverstone2012-03-241-0/+44
| | | | svn path=/trunk/libdom/; revision=13602
* Merge branches/jmb/dom-alloc-purge back to trunkJohn Mark Bell2011-12-211-24/+16
| | | | svn path=/trunk/libdom/; revision=13316
* s/struct dom_string/dom_string/gJohn Mark Bell2011-04-071-9/+9
| | | | svn path=/trunk/libdom/; revision=12172
* Remove bootstrap infrastructure, and just make dom_implementation a stub.John Mark Bell2010-12-051-3/+0
| | | | | | We only support a single implementation, so all the registry and implementation list stuff is totally unnecesary and overcomplex svn path=/trunk/dom/; revision=11017
* Merge branches/struggleyb/libdom-html to trunk.John Mark Bell2010-08-301-0/+6
| | | | | | A few additional fixes to reduce the number of regressions to single figures. svn path=/trunk/dom/; revision=10724
* Sync with modified libwapcaplet API: 11 additional DOM Level1 testsuite ↵John Mark Bell2010-08-261-2/+1
| | | | | | failures. Most importantly, it actually compiles now. svn path=/trunk/dom/; revision=10717
* Merge the branches/struggleyb/libdom-remain back to trunk.Bo Yang2009-08-111-2/+26
| | | | svn path=/trunk/dom/; revision=9191
* Convert DocumentType to use vtable structure.Bo Yang2009-03-191-1/+28
| | | | svn path=/trunk/dom/; revision=6804
* Begin implementation of DocumentType classJohn Mark Bell2007-09-191-0/+17
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