(ruleStyle: CSSStyleDeclaration, property: string)
| 43 | } |
| 44 | |
| 45 | function getPriority(ruleStyle: CSSStyleDeclaration, property: string) { |
| 46 | return Boolean(ruleStyle && ruleStyle.getPropertyPriority(property)); |
| 47 | } |
| 48 | |
| 49 | function canFilterImage(url: string): boolean { |
| 50 | if (url.startsWith('data:')) { |
no outgoing calls
no test coverage detected