Update web-platform-tests to revision d8b8e0b8efe993a37404d6c6fc75e16fdc16b7d8

This commit is contained in:
WPT Sync Bot 2018-10-25 21:32:39 -04:00
parent abc0f50d20
commit e07315e6af
221 changed files with 7334 additions and 774 deletions

View file

@ -1,4 +1,4 @@
FROM ubuntu:16.04
FROM ubuntu:18.04
# No interactive frontend during docker build
ENV DEBIAN_FRONTEND=noninteractive \

View file

@ -367,9 +367,8 @@ class Firefox(Browser):
return path
def version(self, binary=None, channel=None):
def version(self, binary=None):
"""Retrieve the release version of the installed browser."""
binary = binary or self.find_binary(channel)
version_string = call(binary, "--version").strip()
m = re.match(r"Mozilla Firefox (.*)", version_string)
if not m:

View file

@ -5,5 +5,5 @@ mozcrash == 1.0
mozrunner==7.1.0
mozleak == 0.1
mozinstall==1.16.0
mozdownload==1.24
mozdownload==1.25

View file

@ -111,7 +111,8 @@ def env_extras(**kwargs):
def run_info_extras(**kwargs):
return {"e10s": False,
"headless": False}
"headless": False,
"sw-e10s": False}
def env_options():