Files
ladybird/Libraries/LibWeb/CSS/NumericRange.h
Callum Law aa9f2ed83f LibWeb: Rename AcceptedTypeRange to NumericRange
This name wasn't very clear, also updates associated type and variable
names.
2026-04-22 14:24:12 +01:00

20 lines
306 B
C++

/*
* Copyright (c) 2025, Callum Law <callumlaw1709@outlook.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/Forward.h>
namespace Web::CSS {
struct NumericRange {
double min;
double max;
};
using NumericRangesByValueType = HashMap<ValueType, NumericRange>;
}