Auto merge of #9577 - michaelwu:h5e-update, r=Manishearth

Update html5ever to 0.5.0

r? @Manishearth

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9577)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-02-09 11:08:27 +05:30
commit 93cad4afd3
5 changed files with 8 additions and 8 deletions

View file

@ -72,7 +72,7 @@ euclid = {version = "0.6.1", features = ["plugins"]}
fnv = "1.0"
heapsize = "0.2.5"
heapsize_plugin = "0.1.2"
html5ever = {version = "0.4.2", features = ["heap_size", "unstable"]}
html5ever = {version = "0.5.0", features = ["heap_size", "unstable"]}
hyper = { version = "0.7", features = [ "serde-serialization" ] }
image = "0.5.0"
libc = "0.2"

View file

@ -522,7 +522,7 @@ struct Tracer {
impl tree_builder::Tracer for Tracer {
type Handle = JS<Node>;
#[allow(unrooted_must_root)]
fn trace_handle(&self, node: JS<Node>) {
fn trace_handle(&self, node: &JS<Node>) {
node.trace(self.trc);
}
}