Bug 1032799 - Pass -chrome argument to B2G Desktop. r=jgriffin

This commit is contained in:
Alexandre Lissy 2014-07-02 01:49:00 -04:00
parent 604718cc16
commit a68cae8067

View File

@ -79,6 +79,9 @@ class GeckoInstance(object):
class B2GDesktopInstance(GeckoInstance):
required_prefs = {"focusmanager.testmode": True}
def __init__(self, **kwargs):
super(B2GDesktopInstance, self).__init__(**kwargs)
self.app_args += ['-chrome', 'chrome://b2g/content/shell.html']
class NullOutput(object):
def __call__(self, line):