summaryrefslogtreecommitdiff
path: root/src/core/implementation.c
Commit message (Collapse)AuthorAgeFilesLines
* ensure dom_implementation_create_document_type() parameters are present ↵Vincent Sanders2014-01-241-5/+7
| | | | (coverity 1127076)
* fix sill automatic conversion typoVincent Sanders2014-01-241-1/+1
|
* add context for default action functionVincent Sanders2013-02-191-2/+3
|
* Remove name validation from doctype creation.John-Mark Bell2012-11-031-14/+0
|
* unsigned long -> uint32_t, signed long and long -> int32_t, plus collateral ↵Daniel Silverstone2012-09-101-1/+1
| | | | fixes. Test suite does not pass
* Should be passing the _s variants hereDaniel Silverstone2012-03-281-1/+1
| | | | svn path=/trunk/libdom/; revision=13764
* Make HTMLDocument use dynamic dispatch like everything else.John Mark Bell2012-02-051-12/+2
| | | | | | | | 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
* Merge branches/jmb/dom-alloc-purge back to trunkJohn Mark Bell2011-12-211-17/+8
| | | | svn path=/trunk/libdom/; revision=13316
* Provide mechanism for binding/client to define the features a document ↵John Mark Bell2010-12-061-2/+25
| | | | | | | | | 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-26/+108
| | | | svn path=/trunk/libdom/; revision=11024
* Remove bootstrap infrastructure, and just make dom_implementation a stub.John Mark Bell2010-12-051-39/+108
| | | | | | 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
* Sync with modified libwapcaplet API: 11 additional DOM Level1 testsuite ↵John Mark Bell2010-08-261-4/+4
| | | | | | failures. Most importantly, it actually compiles now. svn path=/trunk/dom/; revision=10717
* Merge the Events module (branches/struggleyb/libdom-events) back to trunk. :)Bo Yang2009-08-131-1/+2
| | | | svn path=/trunk/dom/; revision=9236
* Merge the branches/struggleyb/libdom-remain back to trunk.Bo Yang2009-08-111-16/+9
| | | | svn path=/trunk/dom/; revision=9191
* Rationalise dom_string (some consideration is required as to what happens ↵John Mark Bell2009-03-031-3/+1
| | | | | | | | | wrt interning -- lwc_strings should probably be used) Purge charset handling -- a) documents are always converted to utf-8 b) use parserutils for utf-8 handling Fix Hubbub binding to compile. svn path=/trunk/dom/; revision=6682
* DOM Strings are now capable of containing either UTF-8 or UTF-16 encoded data.John Mark Bell2007-09-301-1/+3
| | | | | | | | | | | | | | | | | | The charset used for strings within a document is specified at document creation time. Whilst it is possible to mix charsets within a document, it's not recommended. Things that need fixing: + dom_string_get_data() doesn't return the charset. Better would be to permit the client to request a charset for the data to be returned in. + Interned node name strings will break if the document is UTF-16 (dom_document_create()). In fact, these could quite happily be globals, rather than allocating a set for each document. + Other usage of dom string constructors need checking for sanity + DOM Strings need to gain more utility APIs (such as getting the character length of a string, string concatenation etc). svn path=/trunk/dom/; revision=3614
* Comment fixesJohn Mark Bell2007-07-291-2/+2
| | | | svn path=/trunk/dom/; revision=3470
* Add DOMImplementation, DOMImplementationListJohn Mark Bell2007-07-121-0/+157
Add DOMImplementationRegistry Define DOMImplementationSource and provide API to allow their registration This little lot should permit some kind of sensible DOM bootstrapping. svn path=/trunk/dom/; revision=3403