Gitweb links:

...log 
http://git.netsurf-browser.org/libdom.git/shortlog/2f067d910b4fbdf3f983381b47232f2eb71754d4
...commit 
http://git.netsurf-browser.org/libdom.git/commit/2f067d910b4fbdf3f983381b47232f2eb71754d4
...tree 
http://git.netsurf-browser.org/libdom.git/tree/2f067d910b4fbdf3f983381b47232f2eb71754d4

The branch, master has been updated
       via  2f067d910b4fbdf3f983381b47232f2eb71754d4 (commit)
      from  3939dbe39d2bd7ef4d34757b3162ac54597d9fba (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=2f067d910b4fbdf3f983381b47232f2eb71754d4
commit 2f067d910b4fbdf3f983381b47232f2eb71754d4
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    html_text_area_element: Set node text content on value change
    
    Signed-off-by: Daniel Silverstone <[email protected]>

diff --git a/src/html/html_text_area_element.c 
b/src/html/html_text_area_element.c
index 6117e83..5c63c3c 100644
--- a/src/html/html_text_area_element.c
+++ b/src/html/html_text_area_element.c
@@ -273,7 +273,7 @@ dom_exception dom_html_text_area_element_set_value(
        if (ele->value != NULL)
                dom_string_ref(ele->value);
 
-       return DOM_NO_ERR;
+       return dom_node_set_text_content((dom_node *)ele, ele->value);
 }
 
 /*------------------------------------------------------------------------*/


-----------------------------------------------------------------------

Summary of changes:
 src/html/html_text_area_element.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/html/html_text_area_element.c 
b/src/html/html_text_area_element.c
index 6117e83..5c63c3c 100644
--- a/src/html/html_text_area_element.c
+++ b/src/html/html_text_area_element.c
@@ -273,7 +273,7 @@ dom_exception dom_html_text_area_element_set_value(
        if (ele->value != NULL)
                dom_string_ref(ele->value);
 
-       return DOM_NO_ERR;
+       return dom_node_set_text_content((dom_node *)ele, ele->value);
 }
 
 /*------------------------------------------------------------------------*/


-- 
Document Object Model library

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to