mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
[libdom] spidermonkey document.cpp
This commit is contained in:
parent
bcd731f14e
commit
5f1229cf18
@ -2,7 +2,7 @@ top_builddir=../../..
|
||||
include $(top_builddir)/Makefile.config
|
||||
INCLUDES += $(SPIDERMONKEY_CFLAGS)
|
||||
|
||||
OBJS = attr.obj attributes.obj collection.obj console.obj element.obj form.obj forms.obj heartbeat.obj history.obj implementation.obj input.obj \
|
||||
OBJS = attr.obj attributes.obj collection.obj console.obj document.obj element.obj form.obj forms.obj heartbeat.obj history.obj implementation.obj input.obj \
|
||||
keyboard.obj localstorage.obj location.obj message.obj navigator.obj nodelist.obj screen.obj unibar.obj window.obj xhr.obj
|
||||
|
||||
include $(top_srcdir)/Makefile.lib
|
||||
|
1966
src/ecmascript/libdom/spidermonkey/document.cpp
Normal file
1966
src/ecmascript/libdom/spidermonkey/document.cpp
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,2 +1,2 @@
|
||||
srcs += files('attr.cpp', 'attributes.cpp', 'collection.cpp', 'console.cpp', 'element.cpp', 'form.cpp', 'forms.cpp', 'heartbeat.cpp', 'history.cpp', 'implementation.cpp', 'input.cpp', 'keyboard.cpp',
|
||||
srcs += files('attr.cpp', 'attributes.cpp', 'collection.cpp', 'console.cpp', 'document.cpp', 'element.cpp', 'form.cpp', 'forms.cpp', 'heartbeat.cpp', 'history.cpp', 'implementation.cpp', 'input.cpp', 'keyboard.cpp',
|
||||
'localstorage.cpp', 'location.cpp', 'message.cpp', 'navigator.cpp', 'nodelist.cpp', 'screen.cpp', 'unibar.cpp', 'window.cpp', 'xhr.cpp')
|
||||
|
@ -62,6 +62,8 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#ifndef CONFIG_LIBDOM
|
||||
|
||||
static xmlpp::Document emptyDoc;
|
||||
|
||||
static JSObject *getDoctype(JSContext *ctx, void *node);
|
||||
@ -2177,3 +2179,4 @@ getDocument(JSContext *ctx, void *doc)
|
||||
|
||||
return el;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user