| 389 | } |
| 390 | |
| 391 | bool SVGAttributeParser::parseColorToken(Color* c) { |
| 392 | return this->parseHexColorToken(c) || this->parseNamedColorToken(c) || |
| 393 | this->parseRGBAColorToken(c) || this->parseRGBColorToken(c); |
| 394 | } |
| 395 | |
| 396 | bool SVGAttributeParser::parseSVGColorType(SVGColorType* color) { |
| 397 | Color c; |
no test coverage detected