mirror of
https://github.com/servo/servo.git
synced 2025-07-24 07:40:27 +01:00
Move '&&' to the end of the previous line.
Following https://github.com/servo/servo/issues/10692 this is just a formating change to satisfy a new tidy requirement of not having '&&' at the beginning of a line.
This commit is contained in:
parent
01b111c43e
commit
924d804583
11 changed files with 29 additions and 29 deletions
|
@ -161,8 +161,8 @@ impl HTMLCollection {
|
|||
}
|
||||
impl CollectionFilter for TagNameNSFilter {
|
||||
fn filter(&self, elem: &Element, _root: &Node) -> bool {
|
||||
((self.qname.ns == Namespace(atom!("*"))) || (self.qname.ns == *elem.namespace()))
|
||||
&& ((self.qname.local == atom!("*")) || (self.qname.local == *elem.local_name()))
|
||||
((self.qname.ns == Namespace(atom!("*"))) || (self.qname.ns == *elem.namespace())) &&
|
||||
((self.qname.local == atom!("*")) || (self.qname.local == *elem.local_name()))
|
||||
}
|
||||
}
|
||||
let filter = TagNameNSFilter {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue