2021-05-02 17:27:35 +02:00
|
|
|
|
|
|
|
#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);
|
2021-05-02 17:27:35 +02:00
|
|
|
|
|
|
|
#endif
|