diff options
Diffstat (limited to 'components/style/node.rs')
-rw-r--r-- | components/style/node.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/style/node.rs b/components/style/node.rs index cebac4bd6f8..5a765f2798d 100644 --- a/components/style/node.rs +++ b/components/style/node.rs @@ -45,6 +45,7 @@ pub trait TElement<'a> : Copy { fn get_id(self) -> Option<Atom>; fn get_disabled_state(self) -> bool; fn get_enabled_state(self) -> bool; + fn get_checked_state(self) -> bool; fn has_class(self, name: &Atom) -> bool; // Ordinarily I wouldn't use callbacks like this, but the alternative is |