Skip to content

Commit 49c8841

Browse files
authored
Merge pull request #4225 from saschanaz/patch-3
[css-fonts-4] Add explicit [Exposed=Window]
2 parents 3189aaf + db9bffd commit 49c8841

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

css-fonts-4/Overview.bs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5929,7 +5929,9 @@ The <code id="cssfontfeaturevaluesrule-interface">CSSFontFeatureValuesRule</code
59295929

59305930
<p>The <dfn>CSSFontFeatureValuesRule</dfn> interface represents a <code>@font-feature-values</code> rule.</p>
59315931

5932-
<pre class='idl'>interface CSSFontFeatureValuesRule : CSSRule {
5932+
<pre class='idl'>
5933+
[Exposed=Window]
5934+
interface CSSFontFeatureValuesRule : CSSRule {
59335935
attribute CSSOMString fontFamily;
59345936
readonly attribute CSSFontFeatureValuesMap annotation;
59355937
readonly attribute CSSFontFeatureValuesMap ornaments;
@@ -5939,6 +5941,7 @@ The <code id="cssfontfeaturevaluesrule-interface">CSSFontFeatureValuesRule</code
59395941
readonly attribute CSSFontFeatureValuesMap styleset;
59405942
};
59415943

5944+
[Exposed=Window]
59425945
interface CSSFontFeatureValuesMap {
59435946
maplike&lt;CSSOMString, sequence&lt;unsigned long&gt;&gt;;
59445947
void set(CSSOMString featureValueName,
@@ -5983,10 +5986,10 @@ a single value.
59835986
<h3 id="om-fontpalettevalues">
59845987
The <code id="cssfontpalettevaluesrule2">CSSFontPaletteValuesRule</code> interface</h3>
59855988
<pre class='idl'>partial interface CSSRule {
5986-
59875989
const unsigned short FONT_PALETTE_VALUES_RULE = 15;
59885990
};
59895991

5992+
[Exposed=Window]
59905993
interface CSSFontPaletteValuesRule : CSSRule {
59915994
maplike&lt;unsigned long, CSSOMString>;
59925995
attribute CSSOMString fontFamily;

0 commit comments

Comments
 (0)