1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

18 lines
479 B
C
Raw Normal View History

#ifndef EL__ECMASCRIPT_SPIDERMONKEY_ELEMENT_H
#define EL__ECMASCRIPT_SPIDERMONKEY_ELEMENT_H
#include "ecmascript/spidermonkey/util.h"
#include <htmlcxx/html/ParserDom.h>
using namespace htmlcxx;
extern JSClass element_class;
extern JSPropertySpec element_props[];
JSObject *getElement(JSContext *ctx, void *node);
2021-05-11 19:02:54 +02:00
JSObject *getCollection(JSContext *ctx, void *node);
2021-05-13 17:41:18 +02:00
JSObject *getAttributes(JSContext *ctx, void *node);
JSObject *getAttr(JSContext *ctx, void *node);
#endif