From 400cbbf3667dd6a9bcbe12c9f7cdaa525684e8ee Mon Sep 17 00:00:00 2001 From: James Graham Date: Wed, 29 Apr 2015 15:20:01 +0100 Subject: [PATCH] Disable antialiasing in Servo when running reftests --- wptrunner/executors/executorservo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wptrunner/executors/executorservo.py b/wptrunner/executors/executorservo.py index ef2bffd..9de859b 100644 --- a/wptrunner/executors/executorservo.py +++ b/wptrunner/executors/executorservo.py @@ -186,7 +186,8 @@ def screenshot(self, test): with TempFilename(self.tempdir) as output_path: self.command = [self.binary, "--cpu", "--hard-fail", "--exit", - "--output=%s" % output_path, full_url] + "-Z", "disable-text-aa", "--output=%s" % output_path, + full_url] env = os.environ.copy() env["HOST_FILE"] = self.hosts_path