mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
selectors: Remove the get_ prefix from get_local_name and get_namespace.
This commit is contained in:
parent
da99f159f4
commit
7ab4b21bc3
12 changed files with 60 additions and 55 deletions
|
@ -2628,12 +2628,12 @@ impl<'a> SelectorsElement for DomRoot<Element> {
|
|||
})
|
||||
}
|
||||
|
||||
fn get_local_name(&self) -> &LocalName {
|
||||
self.local_name()
|
||||
fn local_name(&self) -> &LocalName {
|
||||
Element::local_name(self)
|
||||
}
|
||||
|
||||
fn get_namespace(&self) -> &Namespace {
|
||||
self.namespace()
|
||||
fn namespace(&self) -> &Namespace {
|
||||
Element::namespace(self)
|
||||
}
|
||||
|
||||
fn match_non_ts_pseudo_class<F>(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue