pub fn parse_compound_selector_list<'i, 't, P, Impl>(
    parser: &P,
    input: &mut CssParser<'i, 't>
) -> Result<Box<[Selector<Impl>]>, ParseError<'i, P::Error>>where
    P: Parser<'i, Impl = Impl>,
    Impl: SelectorImpl,
Expand description

Parse a comma separated list of compound selectors.