summaryrefslogtreecommitdiff
path: root/src/core
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | svn path=/trunk/libdom/; revision=14005
* Fix a crash on http://gopher.floodgap.com/overbite/François Revel2012-04-071-0/+5
| | | | | | | _dom_element_attr_list_node_clone() forgot to init the list entry. Added some asserts. svn path=/trunk/libdom/; revision=13811
* Force dom_string to have maximal alignment requirements.John Mark Bell2012-04-011-9/+9
| | | | | | Make it clear that dom_string_internal extends it svn path=/trunk/libdom/; revision=13785
* Actually handle errors from lwc_string_caseless_isequalDaniel Silverstone2012-03-291-3/+5
| | | | svn path=/trunk/libdom/; revision=13773
* Should be passing the _s variants hereDaniel Silverstone2012-03-281-1/+1
| | | | svn path=/trunk/libdom/; revision=13764
* Promote ref/unref in dom_string to be inline -- This implementation is a bit ↵Daniel Silverstone2012-03-281-80/+70
| | | | | | ugly svn path=/trunk/libdom/; revision=13762
* Promote ref/unref in dom_node to be inlines.Daniel Silverstone2012-03-288-48/+17
| | | | svn path=/trunk/libdom/; revision=13761
* Add some functions to implement some of LibCSS's selection callbacks, as an ↵Michael Drake2012-03-281-0/+86
| | | | | | experiment in clawing back performance. May well get reverted. svn path=/trunk/libdom/; revision=13755
* Minor improvement by short-circuiting for no classes in _dom_element_has_classDaniel Silverstone2012-03-261-4/+7
| | | | svn path=/trunk/libdom/; revision=13725
* When retrieving attribute values, if the attribute has a single child, said ↵Daniel Silverstone2012-03-261-1/+10
| | | | | | child is a text node, and has a value, then just ref that string and return it. svn path=/trunk/libdom/; revision=13722
* Fix for actual lwc_string_isequal API.Michael Drake2012-03-261-5/+7
| | | | svn path=/trunk/libdom/; revision=13716
* Squash scan-build issuesDaniel Silverstone2012-03-253-6/+12
| | | | svn path=/trunk/libdom/; revision=13686
* Make _dom_element_get_classes cope with copying multiple class valuesJohn Mark Bell2012-03-251-4/+12
| | | | svn path=/trunk/libdom/; revision=13676
* clang compatibility.Rob Kendrick2012-03-251-1/+1
| | | | svn path=/trunk/libdom/; revision=13673
* Comment client's ownership of class array.Michael Drake2012-03-251-1/+1
| | | | svn path=/trunk/libdom/; revision=13665
* Take copy of classes array, for client to free.Michael Drake2012-03-251-2/+11
| | | | svn path=/trunk/libdom/; revision=13663
* Set failure to match properly.Michael Drake2012-03-251-0/+2
| | | | svn path=/trunk/libdom/; revision=13661
* Complete dom_string / lwc_string comparison function.Michael Drake2012-03-251-4/+32
| | | | svn path=/trunk/libdom/; revision=13652
* Guarantee that dom_strings are NUL terminatedJohn Mark Bell2012-03-251-6/+12
| | | | svn path=/trunk/libdom/; revision=13646
* Fix malloc(0)Daniel Silverstone2012-03-241-1/+1
| | | | svn path=/trunk/libdom/; revision=13645
* Make libdom build with clang, for it is more anal than gcc.Rob Kendrick2012-03-241-1/+2
| | | | svn path=/trunk/libdom/; revision=13637
* Switch case sensetivity of class comparison on document quirks mode.Michael Drake2012-03-241-5/+8
| | | | svn path=/trunk/libdom/; revision=13634
* Migrate quirks from html_document to documentDaniel Silverstone2012-03-242-2/+29
| | | | svn path=/trunk/libdom/; revision=13633
* When copying elements, correctly copy the cached class listDaniel Silverstone2012-03-241-1/+13
| | | | svn path=/trunk/libdom/; revision=13630
* Minor cleanupDaniel Silverstone2012-03-241-3/+2
| | | | svn path=/trunk/libdom/; revision=13628
* Only get value for elements with class.Michael Drake2012-03-241-1/+6
| | | | svn path=/trunk/libdom/; revision=13627
* Pass element to attribute list adder, because element might not be attached ↵Michael Drake2012-03-241-7/+6
| | | | | | to the attribute at this point. svn path=/trunk/libdom/; revision=13622
* Generate element's class list.Michael Drake2012-03-242-43/+143
| | | | svn path=/trunk/libdom/; revision=13621
* Store 'class' string as dom_string instead of lwc_string.Michael Drake2012-03-242-6/+6
| | | | svn path=/trunk/libdom/; revision=13616
* Commit a neatnessDaniel Silverstone2012-03-241-3/+1
| | | | svn path=/trunk/libdom/; revision=13612
* Store 'class' string on document.Michael Drake2012-03-242-1/+10
| | | | svn path=/trunk/libdom/; revision=13604
* And ensure we don't recurse comments and PIs during dom_node_get_text_contentDaniel Silverstone2012-03-241-0/+3
| | | | svn path=/trunk/libdom/; revision=13603
* Documents and document types do not have text contentDaniel Silverstone2012-03-244-2/+128
| | | | svn path=/trunk/libdom/; revision=13602
* get_text_content working for all textual nodes modulo processing instructionsDaniel Silverstone2012-03-243-2/+61
| | | | svn path=/trunk/libdom/; revision=13601
* Fixup _dom_node_get_text_contentDaniel Silverstone2012-03-241-7/+14
| | | | svn path=/trunk/libdom/; revision=13598
* Split out destruction of element class cache.Michael Drake2012-03-241-7/+22
| | | | svn path=/trunk/libdom/; revision=13597
* Implement the element class API for libcss, except for actually making the ↵Michael Drake2012-03-242-8/+43
| | | | | | array of lwc_strings. svn path=/trunk/libdom/; revision=13595
* Make dom_node_ref return the nodeDaniel Silverstone2012-03-241-1/+3
| | | | svn path=/trunk/libdom/; revision=13593
* API for comparing dom_string with lwc_string. Caseless version not ↵Michael Drake2012-03-241-0/+54
| | | | | | implemented yet. svn path=/trunk/libdom/; revision=13592
* Don't need to include utils/hashtable.h.Michael Drake2012-03-241-1/+0
| | | | svn path=/trunk/libdom/; revision=13586
* Fix API documentation comments.Michael Drake2012-03-241-13/+13
| | | | svn path=/trunk/libdom/; revision=13585
* C89 for BeOS build.François Revel2012-03-246-77/+115
| | | | svn path=/trunk/libdom/; revision=13581