We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
useUrl
1 parent b24c4f8 commit f1f3fbaCopy full SHA for f1f3fba
src/Value/URL.php
@@ -47,16 +47,16 @@ public static function parse(ParserState $parserState): URL
47
}
48
$identifier .= $character;
49
50
- $bUseUrl = $parserState->streql($identifier, 'url');
51
- if ($bUseUrl) {
+ $useUrl = $parserState->streql($identifier, 'url');
+ if ($useUrl) {
52
$parserState->consumeWhiteSpace();
53
$parserState->consume('(');
54
} else {
55
$anchor->backtrack();
56
57
58
$result = new URL(CSSString::parse($parserState), $parserState->currentLine());
59
60
61
$parserState->consume(')');
62
0 commit comments