(&self)
| 271 | /// Returns true if metadata contains longhand properties. |
| 272 | #[inline] |
| 273 | pub fn has_longhands(&self) -> bool { |
| 274 | self.declaration_kinds.contains(DeclarationKind::Longhands) |
| 275 | } |
| 276 | |
| 277 | /// Returns true if metadata contains unknown nodes. |
| 278 | #[inline] |
no test coverage detected