You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LibWebView+WebContent: Allow setting the default time zone
This is used by tests to set the default time zone to UTC.
This is because certain tests create JavaScript Date objects, which are
in the current timezone.
args_parser.add_option(force_cpu_painting, "Launch browser with GPU painting disabled", "force-cpu-painting");
84
88
args_parser.add_option(debug_process, "Wait for a debugger to attach to the given process name (WebContent, RequestServer, etc.)", "debug-process", 0, "process-name");
85
89
args_parser.add_option(headless, "Launch browser without a graphical interface", "headless");
90
+
args_parser.add_option(default_time_zone, "Default time zone", "default-time-zone", 0, "time-zone-id");
86
91
args_parser.parse(arguments);
87
92
88
93
auto ipv4_address = IPv4Address::from_string(listen_address);
0 commit comments