Skip to content

Commit

Permalink
Merge pull request #4225 from saschanaz/patch-3
Browse files Browse the repository at this point in the history
[css-fonts-4] Add explicit [Exposed=Window]
  • Loading branch information
svgeesus authored Aug 28, 2019
2 parents 3189aaf + db9bffd commit 49c8841
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions css-fonts-4/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -5929,7 +5929,9 @@ The <code id="cssfontfeaturevaluesrule-interface">CSSFontFeatureValuesRule</code

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

<pre class='idl'>interface CSSFontFeatureValuesRule : CSSRule {
<pre class='idl'>
[Exposed=Window]
interface CSSFontFeatureValuesRule : CSSRule {
attribute CSSOMString fontFamily;
readonly attribute CSSFontFeatureValuesMap annotation;
readonly attribute CSSFontFeatureValuesMap ornaments;
Expand All @@ -5939,6 +5941,7 @@ The <code id="cssfontfeaturevaluesrule-interface">CSSFontFeatureValuesRule</code
readonly attribute CSSFontFeatureValuesMap styleset;
};

[Exposed=Window]
interface CSSFontFeatureValuesMap {
maplike&lt;CSSOMString, sequence&lt;unsigned long&gt;&gt;;
void set(CSSOMString featureValueName,
Expand Down Expand Up @@ -5983,10 +5986,10 @@ a single value.
<h3 id="om-fontpalettevalues">
The <code id="cssfontpalettevaluesrule2">CSSFontPaletteValuesRule</code> interface</h3>
<pre class='idl'>partial interface CSSRule {

const unsigned short FONT_PALETTE_VALUES_RULE = 15;
};

[Exposed=Window]
interface CSSFontPaletteValuesRule : CSSRule {
maplike&lt;unsigned long, CSSOMString>;
attribute CSSOMString fontFamily;
Expand Down

0 comments on commit 49c8841

Please sign in to comment.