summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* ensure _dom_element_set_attr_node does not leak on error paths (coverity ↵Vincent Sanders2013-11-081-3/+10
| | | | 1127085)
* dom_document_get_element_by_id increments the ref counter of any returned ↵Michael Drake2013-08-231-0/+3
| | | | element.
* Compare the name and prefix directly. Since this avoids string ↵Michael Drake2013-05-231-17/+5
| | | | concatination, and (un)ref.
* Name and prefix were already compared. Add sane namespace comparison. ↵Michael Drake2013-05-231-7/+7
| | | | Remove broken comparison stuff. Remove TODO from previous commit.
* Fix _dom_node_is_equal leaking all its refs. Replace C++ comments. Flag ↵Michael Drake2013-05-231-32/+65
| | | | broken bit with TODO.
* Notify user data handlers on deletionJohn-Mark Bell2013-02-221-0/+5
|
* add context for default action functionVincent Sanders2013-02-198-17/+32
|
* Fix use of incorrect variable in dom_string(_caseless)_isequalJohn-Mark Bell2012-12-311-4/+4
|
* Fix reference leak in error case.John-Mark Bell2012-12-311-1/+3
|
* 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
|/
* Remove ability to dispatch a generic event as a ptr+len, and memoise all ↵Daniel Silverstone2012-11-037-52/+76
| | | | previous callsites
* Ensure we memoise all the strings used in the core event dispatchDaniel Silverstone2012-11-033-31/+115
|
* Disable validation of element and attribute names in HTML DOM treesDaniel Silverstone2012-11-022-14/+82
|
* Move generation of id_name into document by default. Since 'id' is the most ↵Daniel Silverstone2012-11-021-2/+8
| | | | common name of the 'id' attribute
* Close off two scan-build warnings as best as I can make out.Daniel Silverstone2012-10-082-6/+14
|
* Fix cloning of element attr list.John-Mark Bell2012-10-061-8/+14
|
* Fix comparison of signed/unsigned variables.Michael Drake2012-09-191-2/+2
|
* Merge branch 'tlsa/selectstuff'Michael Drake2012-09-199-70/+850
|\ | | | | | | | | | | | | Conflicts: include/dom/html/html_select_element.h src/html/html_select_element.c src/html/html_select_element.h
| * Enable HTMLSelectElement testsJohn-Mark Bell2012-09-191-2/+2
| |
| * Mostly implement HTMLOptionElement, HTMLSelectElement.John-Mark Bell2012-08-089-69/+847
| | | | | | | | Enable HTMLOptionElement tests that pass.
* | fixup comment damage from automated type conversionVincent Sanders2012-09-113-9/+9
| |
* | unsigned long -> uint32_t, signed long and long -> int32_t, plus collateral ↵Daniel Silverstone2012-09-1032-138/+138
| | | | | | | | fixes. Test suite does not pass
* | Return value of -1 when asked to get value of long property that doesn't ↵Michael Drake2012-09-085-10/+11
|/ | | | exist on the html element.
* DOMDocument::_dom_find_element_by_id: Only compare ids, if the element *has* oneDaniel Silverstone2012-08-061-5/+6
|
* HTML{TextArea,Input,Button}Element: Do not ref the form, refs are for ↵Daniel Silverstone2012-07-223-42/+0
| | | | outside libdom
* HTML*Element: Fix up remaining _dom_element_vtable usage to ↵Daniel Silverstone2012-07-227-7/+7
| | | | _dom_html_element_vtable
* HTMLBodyElement: Implementation and test enablingDaniel Silverstone2012-07-224-12/+67
|
* 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
|
* HTMLDocument: If finalise is hung, don't free us underneath ourselvesDaniel Silverstone2012-07-212-11/+15
|
* HTMLElement: Ensure HTMLElement.get_elements_by_tag_name{,_ns} are caselessDaniel Silverstone2012-07-212-1/+100
|
* HTMLDocument: Uppercase all tag names for HTMLElement and derivativesDaniel Silverstone2012-07-211-36/+31
|
* 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
|
* HTMLOptGroupElement: ImplementationDaniel Silverstone2012-07-194-2/+238
|
* HTMLOptGroupElement: Prepare for implementationDaniel Silverstone2012-07-193-3/+3
|
* HTMLTextAreaElement: Make it workDaniel Silverstone2012-07-187-16/+566
|
* HTML{Input,Button}Element: Clean up some of the local dataDaniel Silverstone2012-07-082-0/+15
|
* HTMLInputElement: Initial support and test enabling. Some TODOs leftDaniel Silverstone2012-07-086-4/+564
|
* HTML{{,Button,Select,Form}Element,Document,Element,{,Options}Collection}: ↵Daniel Silverstone2012-07-0713-31/+454
| | | | Make buttons work and forms contain their correct buttons
* HTMLDocument: Tidy implementation of is_form predicateDaniel Silverstone2012-07-071-14/+3
|
* HTMLCollection: Fix node walker to not stop after left-tree of rootDaniel Silverstone2012-07-071-2/+2
|
* HTML{Form,Link,Meta}Element: Tidy up SIMPLE_GET_SETDaniel Silverstone2012-07-073-87/+99
|
* HTMLMetaElement: Implement, install, enable testsDaniel Silverstone2012-07-074-12/+53
|