diff options
Diffstat (limited to 'components/script/dom/htmlbuttonelement.rs')
-rwxr-xr-x | components/script/dom/htmlbuttonelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmlbuttonelement.rs b/components/script/dom/htmlbuttonelement.rs index 56c60fe2190..dc6c799005f 100755 --- a/components/script/dom/htmlbuttonelement.rs +++ b/components/script/dom/htmlbuttonelement.rs @@ -215,8 +215,8 @@ impl HTMLButtonElement { // Step 3.9 Some(FormDatum { - ty: ty, - name: name, + ty, + name, value: FormDatumValue::String(self.Value()), }) } |