/* test binding to generate htmldocument */ webidlfile "eventtarget.idl"; webidlfile "node.idl"; webidlfile "document.idl"; webidlfile "htmldocument.idl"; hdrcomment "Part of NetSurf Project"; hdrcomment "multi" "line" "comment"; hdrcomment "IDL http://www.whatwg.org/specs/web-apps/current-work/#the-document-object"; preamble %{ #include #include "utils/config.h" #include "utils/log.h" #include "javascript/jsapi.h" %} operation write %{ if (!JS_ConvertArguments(cx, argc, JSAPI_ARGV(cx, vp), "S", &u16_txt)) { return JS_FALSE; } JSString_to_char(u16_txt, txt, length); LOG(("content %p parser %p writing %s", document->htmlc, document->htmlc->parser, txt)); if (document->htmlc->parser != NULL) { dom_hubbub_parser_insert_chunk(document->htmlc->parser, (uint8_t *)txt, length); } %} binding document { type js_libdom; /* the binding type */ /* parameters to constructor value stored in private * context structure. */ private "dom_document *node"; private "struct html_content *htmlc"; interface Document; /* Web IDL interface to generate */ }