MCPcopy Create free account
hub / github.com/dillo-browser/dillo / CssParser

Method CssParser

src/cssparser.cc:458–472  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

456 * ---------------------------------------------------------------------- */
457
458CssParser::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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected