summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Replace algorithm used by _dom_validate_{nc,}name so that instead of O(n^2) ↵Daniel Silverstone2012-03-281-26/+50
| | | | | | it's O(n) by unwinding dom_string_at into the validate functions. svn path=/trunk/libdom/; revision=13763
* Promote ref/unref in dom_string to be inline -- This implementation is a bit ↵Daniel Silverstone2012-03-282-83/+90
| | | | | | ugly svn path=/trunk/libdom/; revision=13762
* Promote ref/unref in dom_node to be inlines.Daniel Silverstone2012-03-289-53/+47
| | | | svn path=/trunk/libdom/; revision=13761
* Add some functions to implement some of LibCSS's selection callbacks, as an ↵Michael Drake2012-03-282-0/+98
| | | | | | experiment in clawing back performance. May well get reverted. svn path=/trunk/libdom/; revision=13755
* Fix build on AmigaOSChris Young2012-03-261-0/+4
| | | | svn path=/trunk/libdom/; revision=13728
* Minor improvement by short-circuiting for no classes in _dom_element_has_classDaniel Silverstone2012-03-261-4/+7
| | | | svn path=/trunk/libdom/; revision=13725
* Use HTMLDocument's memoised 'id' string, decimating cost of ↵Daniel Silverstone2012-03-261-13/+13
| | | | | | _dom_html_element_get_id svn path=/trunk/libdom/; revision=13724
* Intern an 'id' string for our HTML elements to useDaniel Silverstone2012-03-262-2/+9
| | | | svn path=/trunk/libdom/; revision=13723
* 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
* Implement html_document_get_formsJohn Mark Bell2012-03-251-3/+39
| | | | svn path=/trunk/libdom/; revision=13687
* Squash scan-build issuesDaniel Silverstone2012-03-254-8/+16
| | | | svn path=/trunk/libdom/; revision=13686
* Squash aliasing warningJohn Mark Bell2012-03-251-1/+1
| | | | svn path=/trunk/libdom/; revision=13685
* Expose hubbub error definitionsJohn Mark Bell2012-03-251-0/+2
| | | | svn path=/trunk/libdom/; revision=13681
* Fix misuse of msgJohn Mark Bell2012-03-251-5/+4
| | | | svn path=/trunk/libdom/; revision=13677
* Make _dom_element_get_classes cope with copying multiple class valuesJohn Mark Bell2012-03-251-4/+12
| | | | svn path=/trunk/libdom/; revision=13676
* Remove unnecessary unrefDaniel Silverstone2012-03-251-1/+0
| | | | svn path=/trunk/libdom/; revision=13675
* Fix hubbub binding to cope with attributes with bad namesJohn Mark Bell2012-03-251-4/+15
| | | | svn path=/trunk/libdom/; revision=13674
* clang compatibility.Rob Kendrick2012-03-251-1/+1
| | | | svn path=/trunk/libdom/; revision=13673
* Add html_form_element to the public API. It's not fully implemented yetDaniel Silverstone2012-03-252-0/+2
| | | | svn path=/trunk/libdom/; revision=13671
* 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
* Enable 3 HTMLDocument testsDaniel Silverstone2012-03-253-0/+0
| | | | svn path=/trunk/libdom/; revision=13660
* Spell Referrer properly, rather than HTTPish.Daniel Silverstone2012-03-253-16/+16
| | | | svn path=/trunk/libdom/; revision=13659
* Implement HTMLDocument.getTitle for non-explicit titlesDaniel Silverstone2012-03-251-2/+43
| | | | svn path=/trunk/libdom/; revision=13656
* Intern "id"John Mark Bell2012-03-251-2/+4
| | | | svn path=/trunk/libdom/; revision=13654
* 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-242-2/+3
| | | | 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-247-67/+71
| | | | 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
* Oops, missing html_document in installDaniel Silverstone2012-03-241-0/+1
| | | | svn path=/trunk/libdom/; revision=13620
* Support quirks mode in hubbub bindingDaniel Silverstone2012-03-241-3/+17
| | | | svn path=/trunk/libdom/; revision=13619
* Include html_document.h in dom.hDaniel Silverstone2012-03-241-0/+1
| | | | svn path=/trunk/libdom/; revision=13618
* Change bool for an enum because quirks are tristate.Daniel Silverstone2012-03-243-9/+20
| | | | svn path=/trunk/libdom/; revision=13617
* Store 'class' string as dom_string instead of lwc_string.Michael Drake2012-03-242-6/+6
| | | | svn path=/trunk/libdom/; revision=13616
* Rudimentary API for dom_html_document_{get,set}_quirks_mode -- Replete with ↵Daniel Silverstone2012-03-243-1/+48
| | | | | | exception API for orthogonality if not happiness svn path=/trunk/libdom/; revision=13614
* 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
* Dump the title to prove dom_node_get_text_contentDaniel Silverstone2012-03-241-0/+11
| | | | svn path=/trunk/libdom/; revision=13600