| 157 | } |
| 158 | |
| 159 | bool StyleSheetStyle::hasProperties() const { |
| 160 | return !mProperties.empty(); |
| 161 | } |
| 162 | |
| 163 | bool StyleSheetStyle::hasProperty( PropertyId id ) const { |
| 164 | return std::find_if( mProperties.begin(), mProperties.end(), [&id]( const auto& prop ) { |
no test coverage detected