aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2017-02-11 01:55:15 -0800
committerGitHub <noreply@github.com>2017-02-11 01:55:15 -0800
commitd010d2c6752c9a2d44f10f41f0c873ff7791a4e5 (patch)
tree1ed272dacb2af4c896a9fa87412776850ccb6ce3
parent357df350456f11e67ecfed43b491ad12ab3aaa34 (diff)
parent07cd69b571d9d9397ce0160d67b3dad49caef98e (diff)
downloadservo-d010d2c6752c9a2d44f10f41f0c873ff7791a4e5.tar.gz
servo-d010d2c6752c9a2d44f10f41f0c873ff7791a4e5.zip
Auto merge of #15509 - heycam:rm-warning, r=emilio
stylo: Remove useless traverse_subtree call warning. This warning isn't useful now that we call into traverse_subtree to do the check of the dirty bits, rather than checking them up on the Gecko side. The crashtest job is currently failing in part due to the log file exceeding 50MB because of this warning. r? @bholley <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/15509) <!-- Reviewable:end -->
-rw-r--r--ports/geckolib/glue.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/ports/geckolib/glue.rs b/ports/geckolib/glue.rs
index 5bd12939548..e7db6b9f4a2 100644
--- a/ports/geckolib/glue.rs
+++ b/ports/geckolib/glue.rs
@@ -140,7 +140,6 @@ fn traverse_subtree(element: GeckoElement, raw_data: RawServoStyleSetBorrowed,
let token = RecalcStyleOnly::pre_traverse(element, &per_doc_data.stylist, unstyled_children_only);
if !token.should_traverse() {
- error!("Unnecessary call to traverse_subtree");
return;
}