diff options
author | Tim Taubert <tim@timtaubert.de> | 2014-10-12 18:53:31 +0200 |
---|---|---|
committer | Tim Taubert <tim@timtaubert.de> | 2014-10-13 11:13:12 +0200 |
commit | 9a52bb8310eb9d479a5211b0048bb682da0ac123 (patch) | |
tree | 63d43b597057dd5d17e3bf57b7b351d8c1aa525e /components/script/dom/htmltablerowelement.rs | |
parent | acd98a73a4ea1aad96705c49ab960d9c87a38a28 (diff) | |
download | servo-9a52bb8310eb9d479a5211b0048bb682da0ac123.tar.gz servo-9a52bb8310eb9d479a5211b0048bb682da0ac123.zip |
Privatize InheritTypes
Diffstat (limited to 'components/script/dom/htmltablerowelement.rs')
-rw-r--r-- | components/script/dom/htmltablerowelement.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/htmltablerowelement.rs b/components/script/dom/htmltablerowelement.rs index 51fb63bd7e8..3552147fd96 100644 --- a/components/script/dom/htmltablerowelement.rs +++ b/components/script/dom/htmltablerowelement.rs @@ -15,8 +15,9 @@ use servo_util::str::DOMString; #[jstraceable] #[must_root] +#[privatize] pub struct HTMLTableRowElement { - pub htmlelement: HTMLElement, + htmlelement: HTMLElement, } impl HTMLTableRowElementDerived for EventTarget { |