This way the parser could be used to validate properties and attributes, e.g.: ``` let isValidStyleAttributeValue = (value) => { try { CSSParser.parseAListOfDeclarations(value.trim()); } catch (error) { return false; } return true; }; ```