summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
* Debugging more useful than optimisationDaniel Silverstone2012-03-241-1/+1
| | | | svn path=/trunk/libdom/; revision=13599
* 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
* Beginnings of an expat binding -- NOT FUNCTIONAL YETDaniel Silverstone2012-03-244-8/+366
| | | | svn path=/trunk/libdom/; revision=13594
* Make dom_node_ref return the nodeDaniel Silverstone2012-03-242-2/+4
| | | | svn path=/trunk/libdom/; revision=13593
* API for comparing dom_string with lwc_string. Caseless version not ↵Michael Drake2012-03-242-0/+59
| | | | | | implemented yet. svn path=/trunk/libdom/; revision=13592
* Rename 'namespace' argument to _dom_text_event_init_nsDaniel Silverstone2012-03-242-3/+3
| | | | svn path=/trunk/libdom/; revision=13590
* Reenable core test suiteDaniel Silverstone2012-03-241-1/+1
| | | | svn path=/trunk/libdom/; revision=13589
* Enable the HTMLElement tests which passDaniel Silverstone2012-03-2430-1/+1
| | | | svn path=/trunk/libdom/; revision=13588
* Install html_element.hDaniel Silverstone2012-03-241-0/+4
| | | | svn path=/trunk/libdom/; revision=13587
* 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
* Re-disable all known failsDaniel Silverstone2012-03-2496-0/+0
| | | | svn path=/trunk/libdom/; revision=13584
* C89.François Revel2012-03-241-1/+3
| | | | svn path=/trunk/libdom/; revision=13583
* Fix conflicting return type for _dom_hash_get_length().François Revel2012-03-241-2/+2
| | | | svn path=/trunk/libdom/; revision=13582
* C89 for BeOS build.François Revel2012-03-2422-100/+170
| | | | svn path=/trunk/libdom/; revision=13581
* Re-disable specified value testsDaniel Silverstone2012-03-241-0/+0
| | | | svn path=/trunk/libdom/; revision=13580
* Note that document attributes are always specifiedDaniel Silverstone2012-03-241-0/+2
| | | | svn path=/trunk/libdom/; revision=13579
* Include html element from dom.hDaniel Silverstone2012-03-241-0/+3
| | | | svn path=/trunk/libdom/; revision=13578
* Sort the test indexDaniel Silverstone2012-03-241-1/+1
| | | | svn path=/trunk/libdom/; revision=13577
* Disable -Werror for BeOS in libdom. Disable the libxml binding on BeOS for ↵François Revel2012-03-242-1/+13
| | | | | | the time being. svn path=/trunk/libdom/; revision=13575
* Lose unnecessary "struct"John Mark Bell2012-03-232-5/+3
| | | | svn path=/trunk/libdom/; revision=13571
* No need to drop const -- hubbub's API is already sane.John Mark Bell2012-03-231-1/+1
| | | | svn path=/trunk/libdom/; revision=13569
* Fix const-correctness of dom_hubbub_parser_parse_chunk APIJohn Mark Bell2012-03-232-3/+3
| | | | svn path=/trunk/libdom/; revision=13568
* Fix encoding_source namespace collisionJohn Mark Bell2012-03-232-8/+8
| | | | svn path=/trunk/libdom/; revision=13567
* Fix build on ARM.Michael Drake2012-03-231-1/+1
| | | | svn path=/trunk/libdom/; revision=13565
* More working (or at least running) testsDaniel Silverstone2012-03-2395-0/+0
| | | | svn path=/trunk/libdom/; revision=13564
* More tidyingDaniel Silverstone2012-03-231-1/+1
| | | | svn path=/trunk/libdom/; revision=13563
* Turn on some more working testsDaniel Silverstone2012-03-233-0/+0
| | | | svn path=/trunk/libdom/; revision=13562
* Fix dom element attribute setting to return the old element as per the APIDaniel Silverstone2012-03-231-1/+1
| | | | svn path=/trunk/libdom/; revision=13561
* Rename 'a' to 'old_attr' so we can follow this routine more easilyDaniel Silverstone2012-03-231-9/+9
| | | | svn path=/trunk/libdom/; revision=13560
* Update various indents so generated C is easier to use gdb onDaniel Silverstone2012-03-231-37/+37
| | | | svn path=/trunk/libdom/; revision=13558
* Tidy up a littleJohn Mark Bell2012-02-221-14/+14
| | | | svn path=/trunk/libdom/; revision=13461