summaryrefslogtreecommitdiff
path: root/include/dom/html/html_elements.h
Commit message (Collapse)AuthorAgeFilesLines
* Add CENTER to list of HTML elements.Michael Drake2016-02-041-0/+1
|
* Add full list of HTML5 elements to enum.Michael Drake2016-02-011-1/+58
| | | | | There is a TODO in the code, indicating the set of unimplemented HTMLElement specialisations. For now they fall back to HTMLElement.
* Sort HTML elements to make it easier to see what's there.Michael Drake2016-02-011-44/+44
|
* Add missing newline which upsets gccChris Young2016-01-301-1/+2
|
* Fix longstanding failure to handle HTMLDirectoryElement specialisation.Michael Drake2016-01-271-1/+1
| | | | | We were looking for DIRECTORY tags, but we should have been looking for DIR elements.
* Split out tag names from general string table and enum.Michael Drake2016-01-271-0/+94
Previously these were mixed in the the document's general memoised strings. This also gives us an enum by which HTML elements can be identified.