diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2015-10-31 12:21:51 -0700 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2015-10-31 12:21:51 -0700 |
commit | dcaa764b578879509927035a5db615d49adfeaab (patch) | |
tree | 7ae74458135f26ee0e032e565d385c1c90911eb9 /components/script/dom/htmllabelelement.rs | |
parent | 53d8f04ac4894480aa8bc7a6a79fb5e02ae050d1 (diff) | |
download | servo-dcaa764b578879509927035a5db615d49adfeaab.tar.gz servo-dcaa764b578879509927035a5db615d49adfeaab.zip |
Fix unused variable warnings.
Diffstat (limited to 'components/script/dom/htmllabelelement.rs')
-rw-r--r-- | components/script/dom/htmllabelelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmllabelelement.rs b/components/script/dom/htmllabelelement.rs index ae1aa580cc3..0e13261026d 100644 --- a/components/script/dom/htmllabelelement.rs +++ b/components/script/dom/htmllabelelement.rs @@ -69,7 +69,7 @@ impl Activatable for HTMLLabelElement { } // https://html.spec.whatwg.org/multipage/#implicit-submission - fn implicit_submission(&self, ctrlKey: bool, shiftKey: bool, altKey: bool, metaKey: bool) { + fn implicit_submission(&self, _ctrlKey: bool, _shiftKey: bool, _altKey: bool, _metaKey: bool) { //FIXME: Investigate and implement implicit submission for label elements // Issue filed at https://github.com/servo/servo/issues/8263 } |