Author: jmb
Date: Mon Aug 30 15:17:39 2010
New Revision: 10726
URL:
http://source.netsurf-browser.org?rev=10726&view=rev
Log:
Implement DocumentType.name
Modified:
trunk/dom/src/core/document_type.c
Modified: trunk/dom/src/core/document_type.c
URL:
http://source.netsurf-browser.org/trunk/dom/src/core/document_type.c?rev=...
==============================================================================
--- trunk/dom/src/core/document_type.c (original)
+++ trunk/dom/src/core/document_type.c Mon Aug 30 15:17:39 2010
@@ -212,10 +212,7 @@
dom_exception _dom_document_type_get_name(struct dom_document_type *doc_type,
struct dom_string **result)
{
- UNUSED(doc_type);
- UNUSED(result);
-
- return DOM_NOT_SUPPORTED_ERR;
+ return dom_node_get_node_name(doc_type, result);
}
/**