isCssNotEmpty function
Returns true if CSSStyleDeclaration is not empty.
Implementation
bool isCssNotEmpty(CSSStyleDeclaration css) {
return !isCssEmpty(css);
}
Returns true if CSSStyleDeclaration is not empty.
bool isCssNotEmpty(CSSStyleDeclaration css) {
return !isCssEmpty(css);
}