Files
Kmake/test/fixtures/wpt/resources/test-only-api.m.js
2026-05-26 23:36:42 -07:00

6 lines
280 B
JavaScript

/* Whether the browser is Chromium-based with MojoJS enabled */
export const isChromiumBased = 'MojoInterfaceInterceptor' in self;
/* Whether the browser is WebKit-based with internal test-only API enabled */
export const isWebKitBased = !isChromiumBased && 'internals' in self;