ladybird/Libraries/LibWeb/CSS/CSSFontFeatureValuesMap.idl
Callum Law fcdc05a4ee LibWeb: Implement CSSFontFeatureValuesMap
This will be used within `CSSFontFeatureValuesRule`
2026-02-17 12:25:27 +00:00

5 lines
207 B
Text

[Exposed=Window]
interface CSSFontFeatureValuesMap {
maplike<CSSOMString, sequence<unsigned long>>;
undefined set(CSSOMString featureValueName, (unsigned long or sequence<unsigned long>) values);
};