diff options
author | Keith Yeung <kungfukeith11@gmail.com> | 2016-04-11 08:56:37 -0400 |
---|---|---|
committer | Keith Yeung <kungfukeith11@gmail.com> | 2016-04-11 08:56:47 -0400 |
commit | 2d503c8281e0df7e4512b7df6c3032a5b6b5507f (patch) | |
tree | 7cab78e1afe26240a5b972039b640aa129c8f612 /components/script/dom/htmlformelement.rs | |
parent | 814afd6537b8d2fd9b86119748978f51660a54c2 (diff) | |
download | servo-2d503c8281e0df7e4512b7df6c3032a5b6b5507f.tar.gz servo-2d503c8281e0df7e4512b7df6c3032a5b6b5507f.zip |
Rename fn get_form_datum to form_datum
Diffstat (limited to 'components/script/dom/htmlformelement.rs')
-rw-r--r-- | components/script/dom/htmlformelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlformelement.rs b/components/script/dom/htmlformelement.rs index 70a2a7ad730..3e7421de443 100644 --- a/components/script/dom/htmlformelement.rs +++ b/components/script/dom/htmlformelement.rs @@ -414,7 +414,7 @@ impl HTMLFormElement { HTMLElementTypeId::HTMLInputElement => { let input = child.downcast::<HTMLInputElement>().unwrap(); // Step 3.2-3.7 - if let Some(datum) = input.get_form_datum(submitter) { + if let Some(datum) = input.form_datum(submitter) { data_set.push(datum); } } |