aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/formdata.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/formdata.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/formdata.rs')
-rw-r--r--src/components/script/dom/formdata.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/script/dom/formdata.rs b/src/components/script/dom/formdata.rs
index db380af6a55..8bba1ab6de0 100644
--- a/src/components/script/dom/formdata.rs
+++ b/src/components/script/dom/formdata.rs
@@ -21,10 +21,10 @@ pub enum FormDatum {
#[deriving(Encodable)]
pub struct FormData {
- data: HashMap<DOMString, FormDatum>,
- reflector_: Reflector,
- window: JS<Window>,
- form: Option<JS<HTMLFormElement>>
+ pub data: HashMap<DOMString, FormDatum>,
+ pub reflector_: Reflector,
+ pub window: JS<Window>,
+ pub form: Option<JS<HTMLFormElement>>
}
impl FormData {