summaryrefslogtreecommitdiff
path: root/javascript/duktape/dukky.c
Commit message (Collapse)AuthorAgeFilesLines
* Move javascript content handler as appropriate for updated source formatVincent Sanders2016-06-071-1135/+0
|
* stop content header dragging in so many other headersVincent Sanders2016-04-191-0/+1
|
* Fix copyrights.Michael Drake2016-02-291-1/+3
|
* Add switch case fallthrough comment.Michael Drake2016-02-091-0/+1
|
* Handle known HTML elements without specialisations.Michael Drake2016-02-011-1/+7
|
* Attempt to squash warning that happens on CI.Michael Drake2016-02-011-3/+3
|
* JavaScript: Fix & optimise HTMLElement specialisation proto str generation.Michael Drake2016-02-011-9/+199
| | | | | | | We now map from tag name to appropriate specialisation of HTMLElement. We also build the prototype strings at build time, rather than using duktape to concatinate them together at run time.
* Javascript: introduce script execution timeout. For #2413.John-Mark Bell2016-01-311-1/+31
|
* Wrap verbose JS logging in debug macro.Michael Drake2016-01-251-2/+2
|
* Disable JavaScript force-on for forthcoming release.Michael Drake2016-01-211-1/+3
|
* Support (in a slightly dodgy way) the onload eventDaniel Silverstone2015-11-221-7/+103
|
* Ensure that those events listed in 8.1.5.2 as forwarded from body to window, ↵Daniel Silverstone2015-11-221-0/+24
| | | | don't get registered for listeners on body
* Replace duktape's default allocators. Realloc to zero is not guaranteed to ↵Daniel Silverstone2015-11-221-1/+41
| | | | free on all platforms
* Hacky fix to prevent attribute fetch on document objectsDaniel Silverstone2015-11-221-0/+18
|
* Protect against attribute not being presentVincent Sanders2015-11-091-1/+1
|
* Support generating event objects during eventsDaniel Silverstone2015-11-011-2/+8
|
* Current target, not target, otherwise events are fired in the wrong placeDaniel Silverstone2015-11-011-1/+1
|
* Log the phase for event debuggingDaniel Silverstone2015-11-011-0/+11
|
* Support for event gettersDaniel Silverstone2015-10-311-57/+69
|
* Handle eventsDaniel Silverstone2015-10-311-8/+77
|
* Further work toward event handlingDaniel Silverstone2015-10-311-2/+93
|
* Initial work toward JS event supportDaniel Silverstone2015-10-311-0/+144
|
* Support pushing NULL nodes, by pushing a JS 'null' object insteadDaniel Silverstone2015-10-211-0/+3
|
* Split up javascript engine makefilesVincent Sanders2015-10-121-0/+389
by splitting javascript engine specific makefiles and source up we avoid having to consider old JSAPI or none code while working on duktape.