File tree 2 files changed +8
-5
lines changed
tools/wptrunner/wptrunner/browsers
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -377,7 +377,8 @@ def start(self):
377
377
self .e10s )
378
378
379
379
args = self .binary_args [:] if self .binary_args else []
380
- args += [cmd_arg ("marionette" ), "about:blank" ]
380
+ args += [cmd_arg ("marionette" ),
381
+ cmd_arg ("remote-allow-system-access" ), "about:blank" ]
381
382
382
383
debug_args , cmd = browser_command (self .binary ,
383
384
args ,
Original file line number Diff line number Diff line change @@ -280,10 +280,12 @@ def start(self, **kwargs):
280
280
281
281
self .leak_report_file = None
282
282
283
- debug_args , cmd = browser_command (self .package_name ,
284
- self .binary_args if self .binary_args else [] +
285
- [cmd_arg ("marionette" ), "about:blank" ],
286
- self .debug_info )
283
+ args = self .binary_args [:] if self .binary_args else []
284
+ args += [cmd_arg ("marionette" ),
285
+ cmd_arg ("remote-allow-system-access" ), "about:blank" ]
286
+
287
+ debug_args , cmd = browser_command (
288
+ self .package_name , args , self .debug_info )
287
289
288
290
env = get_environ (self .chaos_mode_flags , self .env_extras )
289
291
You can’t perform that action at this time.
0 commit comments