summaryrefslogtreecommitdiff
path: root/src/core/element.c
Commit message (Expand)AuthorAgeFilesLines
* Add some functions to implement some of LibCSS's selection callbacks, as an e...Michael Drake2012-03-281-0/+86
* Minor improvement by short-circuiting for no classes in _dom_element_has_classDaniel Silverstone2012-03-261-4/+7
* Fix for actual lwc_string_isequal API.Michael Drake2012-03-261-5/+7
* Make _dom_element_get_classes cope with copying multiple class valuesJohn Mark Bell2012-03-251-4/+12
* Comment client's ownership of class array.Michael Drake2012-03-251-1/+1
* Take copy of classes array, for client to free.Michael Drake2012-03-251-2/+11
* Set failure to match properly.Michael Drake2012-03-251-0/+2
* Switch case sensetivity of class comparison on document quirks mode.Michael Drake2012-03-241-5/+8
* When copying elements, correctly copy the cached class listDaniel Silverstone2012-03-241-1/+13
* Minor cleanupDaniel Silverstone2012-03-241-3/+2
* Only get value for elements with class.Michael Drake2012-03-241-1/+6
* Pass element to attribute list adder, because element might not be attached t...Michael Drake2012-03-241-7/+6
* Generate element's class list.Michael Drake2012-03-241-43/+142
* Commit a neatnessDaniel Silverstone2012-03-241-3/+1
* Split out destruction of element class cache.Michael Drake2012-03-241-7/+22
* Implement the element class API for libcss, except for actually making the ar...Michael Drake2012-03-241-8/+40
* Don't need to include utils/hashtable.h.Michael Drake2012-03-241-1/+0
* Fix API documentation comments.Michael Drake2012-03-241-13/+13
* C89 for BeOS build.François Revel2012-03-241-18/+23
* Fix dom element attribute setting to return the old element as per the APIDaniel Silverstone2012-03-231-1/+1
* Rename 'a' to 'old_attr' so we can follow this routine more easilyDaniel Silverstone2012-03-231-9/+9
* Take reference to namespace for attribute list node.Michael Drake2012-02-161-0/+1
* Fix build, and don't overwrite new_list_node with the cloned attrJohn Mark Bell2012-02-161-1/+4
* Add documentation comments.Michael Drake2012-02-151-3/+31
* Use list for element attributes.Michael Drake2012-02-151-434/+446
* Provide custom API to ease optimal binding to libcssJohn Mark Bell2012-02-111-0/+37
* Fix build with GCC 4.6John Mark Bell2011-12-211-12/+0
* Merge branches/jmb/dom-alloc-purge back to trunkJohn Mark Bell2011-12-211-409/+213
* s/struct dom_string/dom_string/gJohn Mark Bell2011-04-071-51/+51
* Merge branches/struggleyb/libdom-html to trunk.John Mark Bell2010-08-301-4/+51
* Sync with modified libwapcaplet API: 11 additional DOM Level1 testsuite failu...John Mark Bell2010-08-261-44/+21
* Split the _dom_element_destroy into two functions.Bo Yang2009-08-171-15/+26
* Remove an unused parameter 'result'.Bo Yang2009-08-171-16/+9
* Fix up some ref/unref error produced from _dispatch_ usage.Bo Yang2009-08-141-15/+31
* Merge the Events module (branches/struggleyb/libdom-events) back to trunk. :)Bo Yang2009-08-131-20/+202
* Make the failed 5 testcases passed in DOMTS Core level2. Bo Yang2009-08-121-0/+3
* Merge the branches/struggleyb/libdom-remain back to trunk.Bo Yang2009-08-111-600/+1431
* Modify NamedNodeMap, note that there is no vtable for this type because it is...Bo Yang2009-03-231-6/+8
* Fix the spelling initialize -> initialise.Bo Yang2009-03-201-3/+3
* Convert DOMElement interface to use vtable structure.Bo Yang2009-03-201-69/+128
* Make the dom string class more useful.John Mark Bell2007-10-031-1/+1
* Implement dom_element_get_attribute_ns()John Mark Bell2007-09-291-29/+259
* Modify dom_node_initialise() API to permit specification of namespace URI and...John Mark Bell2007-09-271-7/+11
* Begin to cater for XML namespaces.John Mark Bell2007-09-261-35/+3
* Add library-internal accessor to the head of an Element's attribute list (dom...John Mark Bell2007-09-251-0/+11
* Move attributes field to struct dom_element as it doesn't apply to other node...John Mark Bell2007-09-241-14/+54
* Fix dom_element_set_attribute() to use dom_attr_set_value() to replace the va...John Mark Bell2007-09-231-5/+4
* Note the need for handling of defaulted attributes in dom_element_remove_attr...John Mark Bell2007-09-221-0/+4
* Implement dom_element_get_attribute()John Mark Bell2007-09-221-36/+154
* Implement dom_element_get_tag_name()John Mark Bell2007-09-181-8/+105