File tree 2 files changed +1
-13
lines changed
tools/wptrunner/wptrunner/browsers
2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change 44
44
from ..wpttest import Test
45
45
46
46
47
- def debug_args (debug_info ):
48
- if debug_info .interactive :
49
- # Keep in sync with:
50
- # https://chromium.googlesource.com/chromium/src/+/main/third_party/blink/tools/debug_renderer
51
- return [
52
- "--no-sandbox" ,
53
- "--disable-hang-monitor" ,
54
- "--wait-for-debugger-on-navigation" ,
55
- ]
56
- return []
57
-
58
-
59
47
def check_args (** kwargs ):
60
48
require_arg (kwargs , "webdriver_binary" )
61
49
Original file line number Diff line number Diff line change 2
2
3
3
from .base import require_arg
4
4
from .base import get_timeout_multiplier # noqa: F401
5
- from .chrome import ChromeBrowser , debug_args # noqa: F401
5
+ from .chrome import ChromeBrowser # noqa: F401
6
6
from .chrome import executor_kwargs as chrome_executor_kwargs
7
7
from ..executors .base import WdspecExecutor # noqa: F401
8
8
from ..executors .executorchrome import ( # noqa: F401
You can’t perform that action at this time.
0 commit comments