summaryrefslogtreecommitdiff
path: root/src/html/html_element.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix: Implement HTMLElement copy constructor.Michael Drake2016-02-051-1/+31
| | | | | It can't just use the Element copy constructor, as there is aditional stuff in the HTMLElement struct.
* Add function to get html element's tag type.Michael Drake2016-01-281-0/+18
|
* Store HTMLElement tag types as enum on the html elements.Michael Drake2016-01-281-0/+2
|
* Simplified consistant interface to HTMLElement creation.Michael Drake2016-01-281-9/+9
| | | | Also fixes STYLE element not getting the correct namespace or prefix.
* HTML element attributes get lowercased.Michael Drake2015-10-311-0/+73
|
* add property getter and setter helpers for the dom_ulong typeVincent Sanders2015-10-251-0/+89
|
* Close off two scan-build warnings as best as I can make out.Daniel Silverstone2012-10-081-2/+6
|
* unsigned long -> uint32_t, signed long and long -> int32_t, plus collateral ↵Daniel Silverstone2012-09-101-9/+9
| | | | fixes. Test suite does not pass
* Return value of -1 when asked to get value of long property that doesn't ↵Michael Drake2012-09-081-3/+4
| | | | exist on the html element.
* HTMLElement: Ensure HTMLElement.get_elements_by_tag_name{,_ns} are caselessDaniel Silverstone2012-07-211-1/+66
|
* HTML{{,Button,Select,Form}Element,Document,Element,{,Options}Collection}: ↵Daniel Silverstone2012-07-071-0/+102
| | | | Make buttons work and forms contain their correct buttons
* HTMLElement: Allow other elements to use the vtableDaniel Silverstone2012-07-071-1/+1
|
* HTML: Make Document memoise more generically and port HTMLElement to that ↵Daniel Silverstone2012-07-071-2/+2
| | | | interface
* HTMLElement: className is a simple get/set property, enable 29 more tests.Daniel Silverstone2012-07-041-30/+12
| | | | | | 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-041-18/+1
|
* HTMLElement: lang is a simple get/set. Enable 29 more testsDaniel Silverstone2012-07-041-18/+1
|
* HTMLElement: title is a simple get/set. Enable 29 more testsDaniel Silverstone2012-07-041-18/+1
|
* 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
|
* 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 "id"John Mark Bell2012-03-251-2/+4
| | | | svn path=/trunk/libdom/; revision=13654
* Implement destructorJohn Mark Bell2012-02-061-2/+5
| | | | svn path=/trunk/libdom/; revision=13430
* A bunch of panel beating:John Mark Bell2012-02-051-3/+123
| | | | | | | | * HTMLElement and HTMLDocument now have vtables * All HTML nodes require an HTMLDocument to create * Miscellaneous other cleanups svn path=/trunk/libdom/; revision=13424
* Remove form association logic -- this is not the way to do itJohn Mark Bell2012-02-051-32/+0
| | | | svn path=/trunk/libdom/; revision=13423
* Merge branches/jmb/dom-alloc-purge back to trunkJohn Mark Bell2011-12-211-49/+14
| | | | svn path=/trunk/libdom/; revision=13316
* s/struct dom_string/dom_string/gJohn Mark Bell2011-04-071-2/+2
| | | | svn path=/trunk/libdom/; revision=12172
* Fix buildJohn Mark Bell2010-12-051-2/+4
| | | | svn path=/trunk/dom/; revision=11016
* Beginnings of some of HTMLElementDaniel Silverstone2010-12-051-0/+47
| | | | svn path=/trunk/dom/; revision=11009
* Merge branches/struggleyb/libdom-html to trunk.John Mark Bell2010-08-301-0/+207
A few additional fixes to reduce the number of regressions to single figures. svn path=/trunk/dom/; revision=10724