()
| 369 | // TODO(aduh95): move this to internal/bootstrap/web/* when the CLI flag is |
| 370 | // removed. |
| 371 | function setupNavigator() { |
| 372 | if (getEmbedderOptions().noBrowserGlobals || |
| 373 | getOptionValue('--no-experimental-global-navigator')) { |
| 374 | return; |
| 375 | } |
| 376 | |
| 377 | // https://html.spec.whatwg.org/multipage/system-state.html#the-navigator-object |
| 378 | exposeLazyInterfaces(globalThis, 'internal/navigator', ['Navigator']); |
| 379 | defineReplaceableLazyAttribute(globalThis, 'internal/navigator', ['navigator'], false); |
| 380 | } |
| 381 | |
| 382 | function setupFFI() { |
| 383 | if (!getOptionValue('--experimental-ffi')) { |
no test coverage detected