summaryrefslogtreecommitdiff
path: root/src/core/node.c
Commit message (Expand)AuthorAgeFilesLines
* ensure result value is propogated (coverity 1127073)Vincent Sanders2014-01-241-4/+7
* Fix some broken assertsDaniel Silverstone2013-11-171-2/+2
* Compare the name and prefix directly. Since this avoids string concatination...Michael Drake2013-05-231-17/+5
* Name and prefix were already compared. Add sane namespace comparison. Remov...Michael Drake2013-05-231-7/+7
* Fix _dom_node_is_equal leaking all its refs. Replace C++ comments. Flag bro...Michael Drake2013-05-231-32/+65
* Notify user data handlers on deletionJohn-Mark Bell2013-02-221-0/+5
* add context for default action functionVincent Sanders2013-02-191-1/+2
* Fix buffer overflow in event dispatchJohn-Mark Bell2012-11-111-1/+6
* Be marginally less brain dead when allocating memory during event dispatchDaniel Silverstone2012-11-031-33/+30
* Do not validate event names and use dom_string_byte_length for fastnessDaniel Silverstone2012-11-031-5/+1
* fixup comment damage from automated type conversionVincent Sanders2012-09-111-3/+3
* unsigned long -> uint32_t, signed long and long -> int32_t, plus collateral f...Daniel Silverstone2012-09-101-3/+3
* DOMNode: Clear string pointers when we unref themDaniel Silverstone2012-07-221-4/+12
* Cleanup: Remove two UNUSED()s which are not trueDaniel Silverstone2012-07-191-2/+0
* Promote ref/unref in dom_node to be inlines.Daniel Silverstone2012-03-281-41/+7
* Squash scan-build issuesDaniel Silverstone2012-03-251-2/+8
* And ensure we don't recurse comments and PIs during dom_node_get_text_contentDaniel Silverstone2012-03-241-0/+3
* Fixup _dom_node_get_text_contentDaniel Silverstone2012-03-241-7/+14
* Make dom_node_ref return the nodeDaniel Silverstone2012-03-241-1/+3
* C89 for BeOS build.François Revel2012-03-241-25/+40
* Move dom_string data accessing functions to public header.Michael Drake2011-12-221-4/+4
* Fix build with GCC 4.6John Mark Bell2011-12-211-7/+3
* Merge branches/jmb/dom-alloc-purge back to trunkJohn Mark Bell2011-12-211-297/+349
* s/struct dom_string/dom_string/gJohn Mark Bell2011-04-071-21/+21
* Simplify DOMImplementation API by replacing dom_strings with const char *John Mark Bell2010-12-061-2/+4
* Fix copy constructors to actually copy all members, instead of leaving the ma...John Mark Bell2010-12-061-12/+20
* Remove bootstrap infrastructure, and just make dom_implementation a stub.John Mark Bell2010-12-051-14/+6
* Merge branches/struggleyb/libdom-html to trunk.John Mark Bell2010-08-301-3/+26
* Sync with modified libwapcaplet API: 11 additional DOM Level1 testsuite failu...John Mark Bell2010-08-261-165/+33
* Merge the Events module (branches/struggleyb/libdom-events) back to trunk. :)Bo Yang2009-08-131-13/+72
* Fix up the failed 3 test cases for DOMTS Core level 3.Bo Yang2009-08-121-1/+5
* Merge the branches/struggleyb/libdom-remain back to trunk.Bo Yang2009-08-111-213/+934
* Squash warningsJohn Mark Bell2009-03-251-1/+1
* Convert NodeList and ProcessingInstruction. Bo Yang2009-03-241-3/+3
* Convert the dom_characterdata to use vtable.Bo Yang2009-03-151-1/+1
* Change the our dom to use vtable method. The first step: Bo Yang2009-03-121-101/+124
* Rationalise dom_string (some consideration is required as to what happens wrt...John Mark Bell2009-03-031-14/+7
* Make the dom string class more useful.John Mark Bell2007-10-031-19/+29
* Modify dom_node_initialise() API to permit specification of namespace URI and...John Mark Bell2007-09-271-10/+20
* Begin to cater for XML namespaces.John Mark Bell2007-09-261-13/+93
* Move attributes field to struct dom_element as it doesn't apply to other node...John Mark Bell2007-09-241-6/+7
* Fix dom_node_{get,set}_value() to handle Attr nodes correctly -- now delegate...John Mark Bell2007-09-231-0/+10
* Fix dom_node_get_parent_node(), dom_node_get_previous_sibling() and dom_node_...John Mark Bell2007-09-231-0/+18
* Make _dom_node_readonly() accessible to library internalsJohn Mark Bell2007-09-221-1/+0
* Implement dom_node_get_child_nodes()John Mark Bell2007-09-221-8/+21
* Implement dom_node_remove_node()John Mark Bell2007-09-221-11/+46
* Implement dom_node_replace_child()John Mark Bell2007-09-221-5/+83
* If new_child is already in the tree ensure its parent is not read onlyJohn Mark Bell2007-09-221-2/+7
* Fix misleading commentsJohn Mark Bell2007-09-221-13/+12
* Move cardinality constraint checking for Document Element and DocumentType ch...John Mark Bell2007-09-221-89/+130