Gitweb links:
...log
http://git.netsurf-browser.org/libdom.git/shortlog/6f632d77b90477fbf9dfe5...
...commit
http://git.netsurf-browser.org/libdom.git/commit/6f632d77b90477fbf9dfe576...
...tree
http://git.netsurf-browser.org/libdom.git/tree/6f632d77b90477fbf9dfe576de...
The branch, master has been updated
via 6f632d77b90477fbf9dfe576de54de0d232d6064 (commit)
from ed672c93dd99779c90635d063ed5f060e82c6c82 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/libdom.git/commit/?id=6f632d77b90477fbf9df...
commit 6f632d77b90477fbf9dfe576de54de0d232d6064
Author: Daniel Silverstone <dsilvers(a)digital-scurf.org>
Commit: Daniel Silverstone <dsilvers(a)digital-scurf.org>
Ensure HTMLDocument uses Document's Node vtable so that .textContent is correct
diff --git a/src/html/html_document.c b/src/html/html_document.c
index 53bb228..096c84e 100644
--- a/src/html/html_document.c
+++ b/src/html/html_document.c
@@ -73,7 +73,7 @@ static struct dom_html_document_vtable html_document_vtable = {
{
DOM_NODE_EVENT_TARGET_VTABLE
},
- DOM_NODE_VTABLE,
+ DOM_NODE_VTABLE_DOCUMENT,
},
DOM_DOCUMENT_VTABLE_HTML
},
-----------------------------------------------------------------------
Summary of changes:
src/html/html_document.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/html/html_document.c b/src/html/html_document.c
index 53bb228..096c84e 100644
--- a/src/html/html_document.c
+++ b/src/html/html_document.c
@@ -73,7 +73,7 @@ static struct dom_html_document_vtable html_document_vtable = {
{
DOM_NODE_EVENT_TARGET_VTABLE
},
- DOM_NODE_VTABLE,
+ DOM_NODE_VTABLE_DOCUMENT,
},
DOM_DOCUMENT_VTABLE_HTML
},
--
Document Object Model library