()
| 37 | * switched over as well. |
| 38 | */ |
| 39 | export function hasFirefoxNewRootBehavior(): boolean { |
| 40 | return Boolean( |
| 41 | isFirefox && |
| 42 | compareChromeVersions(firefoxVersion, '102.0') >= 0 |
| 43 | ); |
| 44 | } |
| 45 | |
| 46 | export default function createCSSFilterStyleSheet(config: Theme, url: string, isTopFrame: boolean, fixes: string, index: SiteFixesIndex): string { |
| 47 | const filterValue = getCSSFilterValue(config)!; |
no test coverage detected