aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmliframeelement.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2014-10-15 14:25:33 +0530
committerManish Goregaokar <manishsmail@gmail.com>2014-10-16 10:20:18 +0530
commit3f2cbb275be8675a3f3a8504de1761d0e444f256 (patch)
treea5afcf4f5ed49685b110e89565ad27f513226678 /components/script/dom/htmliframeelement.rs
parentc45550de7351fe4194e2c3671f597c1d868e25ae (diff)
downloadservo-3f2cbb275be8675a3f3a8504de1761d0e444f256.tar.gz
servo-3f2cbb275be8675a3f3a8504de1761d0e444f256.zip
Use #[dom_struct] everywhere
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r--components/script/dom/htmliframeelement.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs
index 108fbbe4dc2..230a78df5b2 100644
--- a/components/script/dom/htmliframeelement.rs
+++ b/components/script/dom/htmliframeelement.rs
@@ -39,9 +39,7 @@ enum SandboxAllowance {
AllowPopups = 0x20
}
-#[jstraceable]
-#[must_root]
-#[privatize]
+#[dom_struct]
pub struct HTMLIFrameElement {
htmlelement: HTMLElement,
size: Cell<Option<IFrameSize>>,