diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2015-11-01 06:19:03 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2015-11-01 06:19:03 +0530 |
commit | 1add1185ab338709082981f226e8227cabfac866 (patch) | |
tree | fa73f6540fe95b7d29eb2433bed11285d33de9e1 /components/script/dom | |
parent | 4cf49d4d0917a5784a54f2a26b138516dfcdc2bc (diff) | |
parent | dcaa764b578879509927035a5db615d49adfeaab (diff) | |
download | servo-1add1185ab338709082981f226e8227cabfac866.tar.gz servo-1add1185ab338709082981f226e8227cabfac866.zip |
Auto merge of #8287 - eefriedman:label-unused-var, r=Manishearth
Fix unused variable warnings.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8287)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom')
-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 } |