| 456 | * ---------------------------------------------------------------------- */ |
| 457 | |
| 458 | CssParser::CssParser(CssContext *context, CssOrigin origin, |
| 459 | const DilloUrl *baseUrl, |
| 460 | const char *buf, int buflen) |
| 461 | { |
| 462 | this->context = context; |
| 463 | this->origin = origin; |
| 464 | this->buf = buf; |
| 465 | this->buflen = buflen; |
| 466 | this->bufptr = 0; |
| 467 | this->spaceSeparated = false; |
| 468 | this->withinBlock = false; |
| 469 | this->baseUrl = baseUrl; |
| 470 | |
| 471 | nextToken (); |
| 472 | } |
| 473 | |
| 474 | /** |
| 475 | * Gets the next character from the buffer, or EOF. |
nothing calls this directly
no outgoing calls
no test coverage detected