summaryrefslogtreecommitdiff
path: root/include/dom
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-31 13:19:25 +0000
committerVincent Sanders <vince@kyllikki.org>2015-10-31 13:19:49 +0000
commitac39440b4946df20756ad59c573b20cfd2e2af21 (patch)
treeeccf3193ae2328203c4804592d888a5800b7730b /include/dom
parent5425792229081e233ad7a4960c85f7c620b92f59 (diff)
downloadlibdom-ac39440b4946df20756ad59c573b20cfd2e2af21.tar.gz
libdom-ac39440b4946df20756ad59c573b20cfd2e2af21.tar.bz2
add async property to script element
Diffstat (limited to 'include/dom')
-rw-r--r--include/dom/html/html_script_element.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/dom/html/html_script_element.h b/include/dom/html/html_script_element.h
index b7df3aa..855bf9d 100644
--- a/include/dom/html/html_script_element.h
+++ b/include/dom/html/html_script_element.h
@@ -20,6 +20,12 @@ dom_exception dom_html_script_element_get_defer(
dom_exception dom_html_script_element_set_defer(
dom_html_script_element *ele, bool defer);
+dom_exception dom_html_script_element_get_async(
+ dom_html_script_element *ele, bool *async);
+
+dom_exception dom_html_script_element_set_async(
+ dom_html_script_element *ele, bool async);
+
dom_exception dom_html_script_element_get_text(
dom_html_script_element *element, dom_string **text);