aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmliframeelement.rs
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2014-04-27 18:52:39 -0400
committerbors-servo <release+servo@mozilla.com>2014-04-27 18:52:39 -0400
commit493aa2cdf30fb2ff5886c714030a20d714764b67 (patch)
tree513345ea70f134bf4a85d8e2cdbe166bfee904f6 /src/components/script/dom/htmliframeelement.rs
parent4942cc76bd2c88e5fdc2b4de4c1ac4576100b455 (diff)
parent948daf242278b22d7a15c1c594129785d1cff538 (diff)
downloadservo-493aa2cdf30fb2ff5886c714030a20d714764b67.tar.gz
servo-493aa2cdf30fb2ff5886c714030a20d714764b67.zip
auto merge of #2238 : mozilla/servo/rustup_20140410c, r=Ms2ger
r? @metajack Note that all pending submodule PRs must be landed before this should be given r+.
Diffstat (limited to 'src/components/script/dom/htmliframeelement.rs')
-rw-r--r--src/components/script/dom/htmliframeelement.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/script/dom/htmliframeelement.rs b/src/components/script/dom/htmliframeelement.rs
index 0b54fe3e3bb..44427b13c7c 100644
--- a/src/components/script/dom/htmliframeelement.rs
+++ b/src/components/script/dom/htmliframeelement.rs
@@ -33,10 +33,10 @@ enum SandboxAllowance {
#[deriving(Encodable)]
pub struct HTMLIFrameElement {
- htmlelement: HTMLElement,
+ pub htmlelement: HTMLElement,
frame: Untraceable<Option<Url>>,
- size: Option<IFrameSize>,
- sandbox: Option<u8>
+ pub size: Option<IFrameSize>,
+ pub sandbox: Option<u8>
}
impl HTMLIFrameElementDerived for EventTarget {
@@ -50,8 +50,8 @@ impl HTMLIFrameElementDerived for EventTarget {
#[deriving(Encodable)]
pub struct IFrameSize {
- pipeline_id: PipelineId,
- subpage_id: SubpageId,
+ pub pipeline_id: PipelineId,
+ pub subpage_id: SubpageId,
}
impl HTMLIFrameElement {