fix clippy

This commit is contained in:
Evan Almloff 2023-04-17 13:44:44 -05:00
parent 9877b0f0b1
commit 5d9d9e7441
2 changed files with 17 additions and 23 deletions

View file

@ -309,24 +309,21 @@ fn custom_elements_work() {
let size = *node.get::<LayoutState>().unwrap();
let id = node.id();
println!("{indent}{id:?} {color:?} {size:?} {node_type:?}");
match node_type {
NodeType::Element(el) => {
match el.tag.as_str() {
// the color should bubble up from customelementslot
"testing132" | "customelementslot" => {
assert_eq!(color.color, 1);
}
// the color of the light dom should not effect the color of the shadow dom, so the color of divs in the shadow dom should be 0
"div" => {
assert_eq!(color.color, 0);
}
_ => {}
if let NodeType::Element(el) = node_type {
match el.tag.as_str() {
// the color should bubble up from customelementslot
"testing132" | "customelementslot" => {
assert_eq!(color.color, 1);
}
if el.tag != "Root" {
assert_eq!(size.size, (i + 2).saturating_sub(height));
// the color of the light dom should not effect the color of the shadow dom, so the color of divs in the shadow dom should be 0
"div" => {
assert_eq!(color.color, 0);
}
_ => {}
}
if el.tag != "Root" {
assert_eq!(size.size, (i + 2).saturating_sub(height));
}
_ => {}
}
});
}

View file

@ -76,16 +76,13 @@ impl Driver for Counter {
event: Rc<EventData>,
_: bool,
) {
match event_type {
"input" => {
// when the button is clicked, increment the counter
if let EventData::Form(input_event) = &*event {
if let Ok(value) = input_event.value.parse::<f64>() {
self.count = value;
}
if event_type == "input" {
// when the button is clicked, increment the counter
if let EventData::Form(input_event) = &*event {
if let Ok(value) = input_event.value.parse::<f64>() {
self.count = value;
}
}
_ => {}
}
}