19 lines
306 B
C++
19 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>;
|
|
|
|
}
|