gecko-dev/testing/web-platform/tests/interfaces/css-fonts.idl
autofoolip c025fb1620 Bug 1577396 [wpt PR 18734] - Update interfaces/css-fonts.idl, a=testonly
Automatic update from web-platform-tests
Update interfaces/css-fonts.idl (#18734)

Source: https://github.com/tidoust/reffy-reports/blob/8f2fdfd/whatwg/idl/css-fonts.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/578199200
--

wpt-commits: 92ea0294e5a351d07edfb007fb56e9aa88e64117
wpt-pr: 18734
2019-09-03 14:23:22 +00:00

38 lines
1.3 KiB
Text

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into reffy-reports
// (https://github.com/tidoust/reffy-reports)
// Source: CSS Fonts Module Level 4 (https://drafts.csswg.org/css-fonts-4/)
[Exposed=Window]
interface CSSFontFaceRule : CSSRule {
readonly attribute CSSStyleDeclaration style;
};
partial interface CSSRule { const unsigned short FONT_FEATURE_VALUES_RULE = 14;
};
[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;
};
[Exposed=Window]
interface CSSFontFeatureValuesMap {
maplike<CSSOMString, sequence<unsigned long>>;
void set(CSSOMString featureValueName,
(unsigned long or sequence<unsigned long>) values);
};
partial interface CSSRule { const unsigned short FONT_PALETTE_VALUES_RULE = 15;
};
[Exposed=Window]
interface CSSFontPaletteValuesRule : CSSRule {
maplike<unsigned long, CSSOMString>;
attribute CSSOMString fontFamily;
attribute CSSOMString basePalette;
};