stylo: Remove TElement::attr_equals

This commit is contained in:
Manish Goregaokar 2017-06-08 14:09:41 -07:00 committed by Manish Goregaokar
parent 310408a828
commit 618efc6357
3 changed files with 0 additions and 19 deletions

View file

@ -726,17 +726,6 @@ impl<'le> TElement for GeckoElement<'le> {
}
}
#[inline]
fn attr_equals(&self, namespace: &Namespace, attr: &Atom, val: &Atom) -> bool {
unsafe {
bindings::Gecko_AttrEquals(self.0,
namespace.0.as_ptr(),
attr.as_ptr(),
val.as_ptr(),
/* ignoreCase = */ false)
}
}
fn each_class<F>(&self, callback: F)
where F: FnMut(&Atom)
{