summaryrefslogtreecommitdiff
path: root/include/dom
Commit message (Collapse)AuthorAgeFilesLines
...
* | Return value of -1 when asked to get value of long property that doesn't ↵Michael Drake2012-09-083-6/+6
|/ | | | exist on the html element.
* HTMLBodyElement: Implementation and test enablingDaniel Silverstone2012-07-222-1/+41
|
* DOMString: Add toupper and tolower methodsDaniel Silverstone2012-07-211-0/+8
|
* HTMLOptGroupElement: ImplementationDaniel Silverstone2012-07-191-1/+27
|
* HTMLOptGroupElement: Prepare for implementationDaniel Silverstone2012-07-192-0/+1
|
* HTMLTextAreaElement: Make it workDaniel Silverstone2012-07-183-7/+83
|
* HTMLInputElement: Initial support and test enabling. Some TODOs leftDaniel Silverstone2012-07-082-1/+120
|
* HTML{{,Button,Select,Form}Element,Document,Element,{,Options}Collection}: ↵Daniel Silverstone2012-07-072-1/+49
| | | | Make buttons work and forms contain their correct buttons
* HTMLMetaElement: Implement, install, enable testsDaniel Silverstone2012-07-072-0/+27
|
* HTMLLinkElement: Implement and enable testsDaniel Silverstone2012-07-072-0/+50
|
* HTML{Html,Head}Element: Unvirtualise accessorsDaniel Silverstone2012-07-072-53/+8
|
* HTMLFormElement: Add basic attributes, enable 5 more testsDaniel Silverstone2012-07-071-0/+32
|
* Makefile: Install the html_collection header and include it from dom.hDaniel Silverstone2012-07-071-0/+1
|
* HTMLTitleElement: Implementation and enabling of testDaniel Silverstone2012-07-071-0/+1
|
* HTMLHeadElement: Support for the element, enable the testDaniel Silverstone2012-07-072-0/+31
|
* HTMLHtmlElement: Add support for version attribute and enable testDaniel Silverstone2012-07-071-0/+30
|
* Add HTMLHtmlElement to the main dom.h includesDaniel Silverstone2012-07-071-1/+2
|
* HTMLElement: className is a simple get/set property, enable 29 more tests.Daniel Silverstone2012-07-041-14/+14
| | | | | | 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.
* Force dom_string to have maximal alignment requirements.John Mark Bell2012-04-011-3/+3
| | | | | | Make it clear that dom_string_internal extends it svn path=/trunk/libdom/; revision=13785
* 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
* Promote ref/unref in dom_string to be inline -- This implementation is a bit ↵Daniel Silverstone2012-03-281-3/+20
| | | | | | ugly svn path=/trunk/libdom/; revision=13762
* Promote ref/unref in dom_node to be inlines.Daniel Silverstone2012-03-281-5/+30
| | | | svn path=/trunk/libdom/; revision=13761
* Add some functions to implement some of LibCSS's selection callbacks, as an ↵Michael Drake2012-03-281-0/+12
| | | | | | experiment in clawing back performance. May well get reverted. svn path=/trunk/libdom/; revision=13755
* Add html_form_element to the public API. It's not fully implemented yetDaniel Silverstone2012-03-251-0/+1
| | | | svn path=/trunk/libdom/; revision=13671
* Spell Referrer properly, rather than HTTPish.Daniel Silverstone2012-03-251-7/+7
| | | | svn path=/trunk/libdom/; revision=13659
* Migrate quirks from html_document to documentDaniel Silverstone2012-03-242-32/+32
| | | | svn path=/trunk/libdom/; revision=13633
* 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-241-4/+14
| | | | svn path=/trunk/libdom/; revision=13617
* Rudimentary API for dom_html_document_{get,set}_quirks_mode -- Replete with ↵Daniel Silverstone2012-03-241-0/+22
| | | | | | exception API for orthogonality if not happiness svn path=/trunk/libdom/; revision=13614
* Make dom_node_ref return the nodeDaniel Silverstone2012-03-241-1/+1
| | | | svn path=/trunk/libdom/; revision=13593
* API for comparing dom_string with lwc_string. Caseless version not ↵Michael Drake2012-03-241-0/+5
| | | | | | implemented yet. svn path=/trunk/libdom/; revision=13592
* Rename 'namespace' argument to _dom_text_event_init_nsDaniel Silverstone2012-03-241-1/+1
| | | | svn path=/trunk/libdom/; revision=13590
* Include html element from dom.hDaniel Silverstone2012-03-241-0/+3
| | | | svn path=/trunk/libdom/; revision=13578
* Fix build on ARM.Michael Drake2012-03-231-1/+1
| | | | svn path=/trunk/libdom/; revision=13565
* Provide custom API to ease optimal binding to libcssJohn Mark Bell2012-02-111-0/+29
| | | | svn path=/trunk/libdom/; revision=13440
* Add constructor which auto-interns dataJohn Mark Bell2012-02-061-0/+2
| | | | svn path=/trunk/libdom/; revision=13427
* Make HTMLDocument use dynamic dispatch like everything else.John Mark Bell2012-02-051-39/+225
| | | | | | | | Fix variable misuse in HTMLDocument constructor. Overload Document.createElement and Document.createElementNS for HTMLDocuments Re-enable decision to create HTMLDocument instead of Document in DOMImplementation.createDocument svn path=/trunk/libdom/; revision=13425
* A bunch of panel beating:John Mark Bell2012-02-052-21/+92
| | | | | | | | * HTMLElement and HTMLDocument now have vtables * All HTML nodes require an HTMLDocument to create * Miscellaneous other cleanups svn path=/trunk/libdom/; revision=13424
* Excise more API bizarrenessJohn Mark Bell2012-02-051-6/+0
| | | | svn path=/trunk/libdom/; revision=13421
* Implement HTMLDocument constructor/destructorJohn Mark Bell2012-02-051-1/+1
| | | | svn path=/trunk/libdom/; revision=13420
* Remove parser unpleasantness from HTMLDocumentJohn Mark Bell2012-02-051-6/+1
| | | | svn path=/trunk/libdom/; revision=13419
* Fix comparison of interned and non-interned dom strings. Constify dom ↵Michael Drake2011-12-221-2/+2
| | | | | | string data accessers. svn path=/trunk/libdom/; revision=13327
* Move dom_string data accessing functions to public header.Michael Drake2011-12-221-0/+10
| | | | svn path=/trunk/libdom/; revision=13322
* Merge branches/jmb/dom-alloc-purge back to trunkJohn Mark Bell2011-12-218-48/+79
| | | | svn path=/trunk/libdom/; revision=13316
* s/struct dom_string/dom_string/gJohn Mark Bell2011-04-0728-433/+422
| | | | svn path=/trunk/libdom/; revision=12172
* Provide mechanism for binding/client to define the features a document ↵John Mark Bell2010-12-062-1/+12
| | | | | | | | | object should support. Utilise this to decide whether to create a raw Document or an HTMLDocument instance. Disable the above decision, as the HTMLDocument implementation is garbage svn path=/trunk/libdom/; revision=11025
* Simplify DOMImplementation API by replacing dom_strings with const char *John Mark Bell2010-12-061-6/+5
| | | | svn path=/trunk/libdom/; revision=11024
* Remove bootstrap infrastructure, and just make dom_implementation a stub.John Mark Bell2010-12-057-342/+9
| | | | | | We only support a single implementation, so all the registry and implementation list stuff is totally unnecesary and overcomplex svn path=/trunk/dom/; revision=11017
* Fix buildJohn Mark Bell2010-12-051-1/+1
| | | | svn path=/trunk/dom/; revision=11016