summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* remove accidentaly left in debugVincent Sanders2012-07-061-26/+0
|
* update dom hubbub binding to allow for script controlVincent Sanders2012-07-063-284/+355
|
* CharacterData.delete: Fix this and enable 5 more testsDaniel Silverstone2012-07-056-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
|
* CLEANIN: Remove vim .swp file from struggleybDaniel Silverstone2012-07-051-0/+0
|
* HTMLElement: className is a simple get/set property, enable 29 more tests.Daniel Silverstone2012-07-0432-50/+32
| | | | | | HTMLElement.className means that dynamic conversion looks for class_name and not classname. As such, rename the methods and enable the simple getter/setter methods for the property. As such, another 29 tests pass.
* HTMLElement: 'dir' is a simple get/set. Enable more testsDaniel Silverstone2012-07-0430-18/+1
|
* HTMLElement: lang is a simple get/set. Enable 29 more testsDaniel Silverstone2012-07-0430-18/+1
|
* HTMLElement: title is a simple get/set. Enable 29 more testsDaniel Silverstone2012-07-0430-18/+1
|
* HTMLDocument: Memoise 'title' 'lang' 'dir' and 'class' tooDaniel Silverstone2012-07-042-3/+33
|
* HTMLElement: Replace current get/set id with a macroDaniel Silverstone2012-07-041-33/+30
|
* HTMLElement.set_id: Use memoised 'id' string from HTMLDocumentDaniel Silverstone2012-07-041-12/+12
|
* Update to new NSBUILD infrastructureDaniel Silverstone2012-06-2910-12/+18
| | | | svn path=/trunk/libdom/; revision=14005
* Initial git ignoresDaniel Silverstone2012-06-041-0/+7
| | | | svn path=/trunk/libdom/; revision=13951
* Don't use -std=c99 for gcc2. Oddly ZETA's gcc2 didn't really care, but ↵François Revel2012-04-171-2/+6
| | | | | | Haiku's does. svn path=/trunk/libdom/; revision=13878
* 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-012-12/+12
| | | | | | Make it clear that dom_string_internal extends it svn path=/trunk/libdom/; revision=13785
* Remove _GNU_SOURCEJohn Mark Bell2012-03-301-1/+1
| | | | svn path=/trunk/libdom/; revision=13781
* Replace strndup with our own implementationJohn Mark Bell2012-03-301-3/+22
| | | | svn path=/trunk/libdom/; revision=13780
* Remove pedantic from CFLAGS ready for wapcaplet reworkDaniel Silverstone2012-03-291-1/+1
| | | | svn path=/trunk/libdom/; revision=13774
* Actually handle errors from lwc_string_caseless_isequalDaniel Silverstone2012-03-291-3/+5
| | | | svn path=/trunk/libdom/; revision=13773
* Remove dom_string casts in API macros to help prevent issues like that fixed ↵Daniel Silverstone2012-03-282-29/+20
| | | | | | in r13764 happening again svn path=/trunk/libdom/; revision=13766
* Remove casts related to dom_string in API macros because they were hiding ↵Daniel Silverstone2012-03-289-104/+74
| | | | | | errors such as the one fixed in r13764 svn path=/trunk/libdom/; revision=13765
* Should be passing the _s variants hereDaniel Silverstone2012-03-281-1/+1
| | | | svn path=/trunk/libdom/; revision=13764
* 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