Automattic\WooCommerce\Vendor\Sabberworm\CSS\Value
Value::parseMicrosoftFilter
Method of the class: Value{}
No Hooks.
Returns
CSSFunction.
Usage
$result = Value::parseMicrosoftFilter( $oParserState );
- $oParserState(ParserState) (required)
- .
Value::parseMicrosoftFilter() Value::parseMicrosoftFilter code WC 10.5.0
private static function parseMicrosoftFilter(ParserState $oParserState)
{
$sFunction = $oParserState->consumeUntil('(', false, true);
$aArguments = Value::parseValue($oParserState, [',', '=']);
return new CSSFunction($sFunction, $aArguments, ',', $oParserState->currentLine());
}