Rename fn get_form_datum to form_datum

This commit is contained in:
Keith Yeung 2016-04-11 08:56:37 -04:00
parent 814afd6537
commit 2d503c8281
2 changed files with 2 additions and 2 deletions

View file

@ -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);
}
}