mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 10:20:22 +00:00
15 lines
589 B
Text
15 lines
589 B
Text
|
|
#import <CSS/CSSRule.idl>
|
||
|
|
#import <CSS/CSSFontFeatureValuesMap.idl>
|
||
|
|
|
||
|
|
[Exposed=Window]
|
||
|
|
interface CSSFontFeatureValuesRule : CSSRule {
|
||
|
|
attribute CSSOMString fontFamily;
|
||
|
|
readonly attribute CSSFontFeatureValuesMap annotation;
|
||
|
|
readonly attribute CSSFontFeatureValuesMap ornaments;
|
||
|
|
readonly attribute CSSFontFeatureValuesMap stylistic;
|
||
|
|
readonly attribute CSSFontFeatureValuesMap swash;
|
||
|
|
readonly attribute CSSFontFeatureValuesMap characterVariant;
|
||
|
|
readonly attribute CSSFontFeatureValuesMap styleset;
|
||
|
|
readonly attribute CSSFontFeatureValuesMap historicalForms;
|
||
|
|
};
|