isInheritedPropertyID function

bool isInheritedPropertyID(
  1. CSSPropertyID id
)

Implementation

bool isInheritedPropertyID(CSSPropertyID id) {
  assert(id != CSSPropertyID.Invalid);
  return _isInheritedPropertyTable[id.index];
}