|
@@ -845,7 +845,8 @@ Token Tokenizer::consume_a_numeric_token()
|
|
|
// 2. Consume a name. Set the <dimension-token>’s unit to the returned value.
|
|
|
auto unit = consume_a_name();
|
|
|
VERIFY(!unit.is_empty());
|
|
|
- token.m_unit = move(unit);
|
|
|
+ // NOTE: We intentionally store this in the `value`, to save space.
|
|
|
+ token.m_value = move(unit);
|
|
|
|
|
|
// 3. Return the <dimension-token>.
|
|
|
return token;
|