Update web-platform-tests to revision 192193581b6912818a0e3f2408f40f033a451a79

This commit is contained in:
WPT Sync Bot 2019-01-14 20:34:43 -05:00
parent 2cf9a00c99
commit 13bbfdb3eb
46 changed files with 1499 additions and 144 deletions

View file

@ -154,7 +154,7 @@ class FennecBrowser(FirefoxBrowser):
"apz.allow_zooming": False,
"android.widget_paints_background": False,
# Ensure that scrollbars are always painted
"ui.scrollbarFadeBeginDelay": 100000})
"layout.testing.overlay-scrollbars.always-visible": True})
if self.install_fonts:
self.logger.debug("Copying Ahem font to profile")

View file

@ -166,7 +166,9 @@ class ServoWebDriverBrowser(Browser):
command=" ".join(self.command))
def is_alive(self):
return self.proc.poll() is None
if self.runner:
return self.runner.is_running()
return False
def cleanup(self):
self.stop()