diff options
Diffstat (limited to 'components/script/dom/htmlinputelement.rs')
-rw-r--r-- | components/script/dom/htmlinputelement.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/htmlinputelement.rs b/components/script/dom/htmlinputelement.rs index ab9818d99f0..1e95e718d49 100644 --- a/components/script/dom/htmlinputelement.rs +++ b/components/script/dom/htmlinputelement.rs @@ -45,8 +45,9 @@ enum InputType { #[jstraceable] #[must_root] +#[privatize] pub struct HTMLInputElement { - pub htmlelement: HTMLElement, + htmlelement: HTMLElement, input_type: Cell<InputType>, checked: Cell<bool>, uncommitted_value: RefCell<Option<String>>, |