aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmltablecellelement.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2015-10-31 06:51:47 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2015-10-31 06:51:47 +0530
commit913ac568750502087a7f1693b3657a24cefd2460 (patch)
treed28f36835d9befbb58bd34a95de785499bdacd10 /components/script/dom/htmltablecellelement.rs
parent84bf368c3bb8ec3550fe158a874e68e02bb0d2be (diff)
parent16fa9cabc92e8c69c1161a20b58d0e32c7ab40c2 (diff)
downloadservo-913ac568750502087a7f1693b3657a24cefd2460.tar.gz
servo-913ac568750502087a7f1693b3657a24cefd2460.zip
Auto merge of #8279 - frewsxcv:clippy-fixes, r=eefriedman
Fix some rust-clippy violations <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8279) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/htmltablecellelement.rs')
-rw-r--r--components/script/dom/htmltablecellelement.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/htmltablecellelement.rs b/components/script/dom/htmltablecellelement.rs
index 3f1b13633f2..ac96982a45d 100644
--- a/components/script/dom/htmltablecellelement.rs
+++ b/components/script/dom/htmltablecellelement.rs
@@ -107,18 +107,18 @@ impl VirtualMethods for HTMLTableCellElement {
fn attribute_mutated(&self, attr: &Attr, mutation: AttributeMutation) {
self.super_type().unwrap().attribute_mutated(attr, mutation);
- match attr.local_name() {
- &atom!(bgcolor) => {
+ match *attr.local_name() {
+ atom!(bgcolor) => {
self.background_color.set(mutation.new_value(attr).and_then(|value| {
str::parse_legacy_color(&value).ok()
}));
},
- &atom!(colspan) => {
+ atom!(colspan) => {
self.colspan.set(mutation.new_value(attr).map(|value| {
max(DEFAULT_COLSPAN, value.as_uint())
}));
},
- &atom!(width) => {
+ atom!(width) => {
let width = mutation.new_value(attr).map(|value| {
str::parse_length(&value)
});
@@ -129,8 +129,8 @@ impl VirtualMethods for HTMLTableCellElement {
}
fn parse_plain_attribute(&self, local_name: &Atom, value: DOMString) -> AttrValue {
- match local_name {
- &atom!("colspan") => AttrValue::from_u32(value, DEFAULT_COLSPAN),
+ match *local_name {
+ atom!("colspan") => AttrValue::from_u32(value, DEFAULT_COLSPAN),
_ => self.super_type().unwrap().parse_plain_attribute(local_name, value),
}
}