summaryrefslogtreecommitdiff
path: root/src/core
Commit message (Expand)AuthorAgeFilesLines
* Initialise *retJohn-Mark Bell2012-12-311-0/+2
* Fix buffer overflow in event dispatchJohn-Mark Bell2012-11-111-1/+6
* Remove name validation from doctype creation.John-Mark Bell2012-11-031-14/+0
* Merge branch 'master' of git://git.netsurf-browser.org/libdomDaniel Silverstone2012-11-031-14/+12
|\
| * Implement dom_document_type_get_(public|system)id.John-Mark Bell2012-11-031-14/+12
* | 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
|/
* Ensure we memoise all the strings used in the core event dispatchDaniel Silverstone2012-11-032-0/+107
* Move generation of id_name into document by default. Since 'id' is the most ...Daniel Silverstone2012-11-021-2/+8
* Close off two scan-build warnings as best as I can make out.Daniel Silverstone2012-10-081-4/+8
* Fix cloning of element attr list.John-Mark Bell2012-10-061-8/+14
* fixup comment damage from automated type conversionVincent Sanders2012-09-112-7/+7
* unsigned long -> uint32_t, signed long and long -> int32_t, plus collateral f...Daniel Silverstone2012-09-1011-43/+43
* DOMDocument::_dom_find_element_by_id: Only compare ids, if the element *has* oneDaniel Silverstone2012-08-061-5/+6
* DOMNode: Clear string pointers when we unref themDaniel Silverstone2012-07-221-4/+12
* DOMDocument: Actually free the empty memoised stringDaniel Silverstone2012-07-211-1/+2
* DOMString: Add toupper and tolower methodsDaniel Silverstone2012-07-211-1/+115
* Cleanup: Remove two UNUSED()s which are not trueDaniel Silverstone2012-07-191-2/+0
* Nodelist: Support caseless node listsDaniel Silverstone2012-07-072-14/+73
* CharacterData.delete: Fix this and enable 5 more testsDaniel Silverstone2012-07-051-1/+5
* DOMDocument: Memoize the empty stringDaniel Silverstone2012-07-052-0/+11
* DOMString.replace: Swap source/target in byte counterDaniel Silverstone2012-07-051-2/+2
* Update to new NSBUILD infrastructureDaniel Silverstone2012-06-291-1/+1
* Fix a crash on http://gopher.floodgap.com/overbite/François Revel2012-04-071-0/+5
* Force dom_string to have maximal alignment requirements.John Mark Bell2012-04-011-9/+9
* Actually handle errors from lwc_string_caseless_isequalDaniel Silverstone2012-03-291-3/+5
* Should be passing the _s variants hereDaniel Silverstone2012-03-281-1/+1
* Promote ref/unref in dom_string to be inline -- This implementation is a bit ...Daniel Silverstone2012-03-281-80/+70
* Promote ref/unref in dom_node to be inlines.Daniel Silverstone2012-03-288-48/+17
* 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
* When retrieving attribute values, if the attribute has a single child, said c...Daniel Silverstone2012-03-261-1/+10
* Fix for actual lwc_string_isequal API.Michael Drake2012-03-261-5/+7
* Squash scan-build issuesDaniel Silverstone2012-03-253-6/+12
* Make _dom_element_get_classes cope with copying multiple class valuesJohn Mark Bell2012-03-251-4/+12
* clang compatibility.Rob Kendrick2012-03-251-1/+1
* 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
* Complete dom_string / lwc_string comparison function.Michael Drake2012-03-251-4/+32
* Guarantee that dom_strings are NUL terminatedJohn Mark Bell2012-03-251-6/+12
* Fix malloc(0)Daniel Silverstone2012-03-241-1/+1
* Make libdom build with clang, for it is more anal than gcc.Rob Kendrick2012-03-241-1/+2
* Switch case sensetivity of class comparison on document quirks mode.Michael Drake2012-03-241-5/+8
* Migrate quirks from html_document to documentDaniel Silverstone2012-03-242-2/+29
* 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-242-43/+143