summaryrefslogtreecommitdiff
path: root/src/html/html_input_element.h
diff options
context:
space:
mode:
authorRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-10 00:01:36 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-07-18 03:44:34 +0530
commit8045b5015b9f8680cee1489c64b80ad55485eb68 (patch)
treed3490332dc2e4ad5262179c8d6bc16921814c6b9 /src/html/html_input_element.h
parente3eb3c7a0f1ccbcff808fd6d1834019944c082fe (diff)
downloadlibdom-8045b5015b9f8680cee1489c64b80ad55485eb68.tar.gz
libdom-8045b5015b9f8680cee1489c64b80ad55485eb68.tar.bz2
Input Element checked on clicking fix and also fixed bubbling and cancelability
Diffstat (limited to 'src/html/html_input_element.h')
-rw-r--r--src/html/html_input_element.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/html/html_input_element.h b/src/html/html_input_element.h
index 72c7d51..b818b2e 100644
--- a/src/html/html_input_element.h
+++ b/src/html/html_input_element.h
@@ -21,6 +21,8 @@ struct dom_html_input_element {
bool default_checked_set; /**< Whether default_checked has been set */
dom_string *default_value; /**< Initial value */
bool default_value_set; /**< Whether default_value has been set */
+ bool checked; /**< Whether the element has been checked by a click */
+ bool checked_set;
};
/* Create a dom_html_input_element object */