Skip to content

Commit

Permalink
Remove get_attr from TElement. \o/
Browse files Browse the repository at this point in the history
  • Loading branch information
bholley committed Jul 6, 2016
1 parent 1d8d1cb commit 187a47d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 19 deletions.
14 changes: 7 additions & 7 deletions components/script/layout_wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,13 +395,6 @@ impl<'le> TElement for ServoLayoutElement<'le> {
fn attr_equals(&self, namespace: &Namespace, attr: &Atom, val: &Atom) -> bool {
self.get_attr(namespace, attr).map_or(false, |x| x == val)
}

#[inline]
fn get_attr(&self, namespace: &Namespace, name: &Atom) -> Option<&str> {
unsafe {
(*self.element.unsafe_get()).get_attr_val_for_layout(namespace, name)
}
}
}


Expand All @@ -412,6 +405,13 @@ impl<'le> ServoLayoutElement<'le> {
chain: PhantomData,
}
}

#[inline]
fn get_attr(&self, namespace: &Namespace, name: &Atom) -> Option<&str> {
unsafe {
(*self.element.unsafe_get()).get_attr_val_for_layout(namespace, name)
}
}
}

fn as_element<'le>(node: LayoutJS<Node>) -> Option<ServoLayoutElement<'le>> {
Expand Down
2 changes: 0 additions & 2 deletions components/style/dom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,6 @@ pub trait TElement : Sized + Copy + Clone + ElementExt + PresentationalHintsSynt
fn has_attr(&self, namespace: &Namespace, attr: &Atom) -> bool;
fn attr_equals(&self, namespace: &Namespace, attr: &Atom, value: &Atom) -> bool;

fn get_attr<'a>(&'a self, namespace: &Namespace, attr: &Atom) -> Option<&'a str>;

/// Properly marks nodes as dirty in response to restyle hints.
fn note_restyle_hint(&self, mut hint: RestyleHint) {
// Bail early if there's no restyling to do.
Expand Down
10 changes: 0 additions & 10 deletions ports/geckolib/wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,16 +380,6 @@ impl<'le> TElement for GeckoElement<'le> {
/* ignoreCase = */ false)
}
}

#[inline]
fn get_attr<'a>(&'a self, namespace: &Namespace, name: &Atom) -> Option<&'a str> {
unsafe {
let mut length: u32 = 0;
let ptr = Gecko_GetAttrAsUTF8(self.element, namespace.0.as_ptr(), name.as_ptr(),
&mut length);
reinterpret_string(ptr, length)
}
}
}

impl<'le> PresentationalHintsSynthetizer for GeckoElement<'le> {
Expand Down

0 comments on commit 187a47d

Please sign in to comment.