mirror of
https://github.com/servo/servo.git
synced 2025-10-09 04:59:23 +01:00
5 lines
280 B
JavaScript
5 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;
|