diff options
Diffstat (limited to 'components/layout/wrapper.rs')
-rw-r--r-- | components/layout/wrapper.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/components/layout/wrapper.rs b/components/layout/wrapper.rs index 97aa8dd189a..9517e7a2d45 100644 --- a/components/layout/wrapper.rs +++ b/components/layout/wrapper.rs @@ -563,6 +563,13 @@ impl<'le> TElement<'le> for LayoutElement<'le> { } #[inline] + fn get_indeterminate_state(self) -> bool { + unsafe { + self.element.get_indeterminate_state_for_layout() + } + } + + #[inline] fn has_class(self, name: &Atom) -> bool { unsafe { self.element.has_class_for_layout(name) |