Skip to content

Commit 765e712

Browse files
committed
Add missing code after catchup merge
1 parent e886a72 commit 765e712

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Value/Size.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static function parse(ParserState $oParserState, $bIsColorComponent = fal
7777
if ($oParserState->comes('-')) {
7878
$sSize .= $oParserState->consume('-');
7979
}
80-
while (is_numeric($oParserState->peek()) || $oParserState->comes('.')) {
80+
while (is_numeric($oParserState->peek()) || $oParserState->comes('.') || $oParserState->comes('e', true)) {
8181
if ($oParserState->comes('.')) {
8282
$sSize .= $oParserState->consume('.');
8383
} elseif ($oParserState->comes('e', true)) {

0 commit comments

Comments
 (0)