Remove intrinsic Root::r()

This commit is contained in:
Anthony Ramine 2016-05-13 14:20:00 +02:00
parent 51bcf516c8
commit 0b3ab875f4
55 changed files with 275 additions and 310 deletions

View file

@ -71,7 +71,7 @@ impl HTMLTableCellElementMethods for HTMLTableCellElement {
};
parent_children.filter(|c| c.is::<HTMLTableCellElement>())
.position(|c| c.r() == self_node)
.position(|c| &*c == self_node)
.map_or(-1, |p| p as i32)
}
}