aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlimageelement.rs
diff options
context:
space:
mode:
authorTim Taubert <tim@timtaubert.de>2014-10-12 18:53:31 +0200
committerTim Taubert <tim@timtaubert.de>2014-10-13 11:13:12 +0200
commit9a52bb8310eb9d479a5211b0048bb682da0ac123 (patch)
tree63d43b597057dd5d17e3bf57b7b351d8c1aa525e /components/script/dom/htmlimageelement.rs
parentacd98a73a4ea1aad96705c49ab960d9c87a38a28 (diff)
downloadservo-9a52bb8310eb9d479a5211b0048bb682da0ac123.tar.gz
servo-9a52bb8310eb9d479a5211b0048bb682da0ac123.zip
Privatize InheritTypes
Diffstat (limited to 'components/script/dom/htmlimageelement.rs')
-rw-r--r--components/script/dom/htmlimageelement.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/htmlimageelement.rs b/components/script/dom/htmlimageelement.rs
index 299cb4923ca..5d7ffeb3c22 100644
--- a/components/script/dom/htmlimageelement.rs
+++ b/components/script/dom/htmlimageelement.rs
@@ -26,8 +26,9 @@ use std::cell::RefCell;
#[jstraceable]
#[must_root]
+#[privatize]
pub struct HTMLImageElement {
- pub htmlelement: HTMLElement,
+ htmlelement: HTMLElement,
image: RefCell<Option<Url>>,
}