Skip to content

Commit d3e157c

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent fe7124d commit d3e157c

File tree

6 files changed

+128
-19
lines changed

6 files changed

+128
-19
lines changed

baselines/dom.generated.d.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5358,13 +5358,13 @@ declare var CSSFontFaceRule: {
53585358
};
53595359

53605360
/**
5361-
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule, letting developers assign for each font face a common name to specify features indices to be used in font-variant-alternates.
5361+
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMapinterface.
53625362
*
53635363
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule)
53645364
*/
53655365
interface CSSFontFeatureValuesRule extends CSSRule {
53665366
/**
5367-
* The **`fontFamily`** property of the CSSConditionRule interface represents the name of the font family it applies to.
5367+
* The **`fontFamily`** property of the CSSFontFeatureValuesRule interface represents the name of the font family it applies to.
53685368
*
53695369
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule/fontFamily)
53705370
*/
@@ -6815,6 +6815,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
68156815
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-size)
68166816
*/
68176817
backgroundSize: string;
6818+
/** The baseline-shift CSS property repositions the dominant-baseline of a text element relative to the dominant-baseline of its parent text content element. The shifted element might be a sub- or superscript. If the property is present, the value overrides the element's baseline-shift attribute. */
68186819
baselineShift: string;
68196820
/**
68206821
* The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type.
@@ -35321,7 +35322,7 @@ declare var ShadowRoot: {
3532135322
};
3532235323

3532335324
/**
35324-
* The **`SharedWorker`** interface represents a specific kind of worker that can be accessed from several browsing contexts, such as several windows, iframes or even workers. They implement an interface different than dedicated workers and have a different global scope, SharedWorkerGlobalScope.
35325+
* The **`SharedWorker`** interface represents a specific kind of worker that can be accessed from several browsing contexts, such as multiple windows or iframes. Shared workers implement a different interface than dedicated workers, have a different global scope (SharedWorkerGlobalScope), and their constructor is not exposed in DedicatedWorkerGlobalScope, so they cannot be instantiated from dedicated workers.
3532535326
*
3532635327
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SharedWorker)
3532735328
*/

baselines/ts5.5/dom.generated.d.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5354,13 +5354,13 @@ declare var CSSFontFaceRule: {
53545354
};
53555355

53565356
/**
5357-
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule, letting developers assign for each font face a common name to specify features indices to be used in font-variant-alternates.
5357+
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMapinterface.
53585358
*
53595359
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule)
53605360
*/
53615361
interface CSSFontFeatureValuesRule extends CSSRule {
53625362
/**
5363-
* The **`fontFamily`** property of the CSSConditionRule interface represents the name of the font family it applies to.
5363+
* The **`fontFamily`** property of the CSSFontFeatureValuesRule interface represents the name of the font family it applies to.
53645364
*
53655365
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule/fontFamily)
53665366
*/
@@ -6805,6 +6805,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
68056805
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-size)
68066806
*/
68076807
backgroundSize: string;
6808+
/** The baseline-shift CSS property repositions the dominant-baseline of a text element relative to the dominant-baseline of its parent text content element. The shifted element might be a sub- or superscript. If the property is present, the value overrides the element's baseline-shift attribute. */
68086809
baselineShift: string;
68096810
/**
68106811
* The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type.
@@ -35296,7 +35297,7 @@ declare var ShadowRoot: {
3529635297
};
3529735298

3529835299
/**
35299-
* The **`SharedWorker`** interface represents a specific kind of worker that can be accessed from several browsing contexts, such as several windows, iframes or even workers. They implement an interface different than dedicated workers and have a different global scope, SharedWorkerGlobalScope.
35300+
* The **`SharedWorker`** interface represents a specific kind of worker that can be accessed from several browsing contexts, such as multiple windows or iframes. Shared workers implement a different interface than dedicated workers, have a different global scope (SharedWorkerGlobalScope), and their constructor is not exposed in DedicatedWorkerGlobalScope, so they cannot be instantiated from dedicated workers.
3530035301
*
3530135302
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SharedWorker)
3530235303
*/

baselines/ts5.6/dom.generated.d.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5355,13 +5355,13 @@ declare var CSSFontFaceRule: {
53555355
};
53565356

53575357
/**
5358-
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule, letting developers assign for each font face a common name to specify features indices to be used in font-variant-alternates.
5358+
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMapinterface.
53595359
*
53605360
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule)
53615361
*/
53625362
interface CSSFontFeatureValuesRule extends CSSRule {
53635363
/**
5364-
* The **`fontFamily`** property of the CSSConditionRule interface represents the name of the font family it applies to.
5364+
* The **`fontFamily`** property of the CSSFontFeatureValuesRule interface represents the name of the font family it applies to.
53655365
*
53665366
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule/fontFamily)
53675367
*/
@@ -6812,6 +6812,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
68126812
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-size)
68136813
*/
68146814
backgroundSize: string;
6815+
/** The baseline-shift CSS property repositions the dominant-baseline of a text element relative to the dominant-baseline of its parent text content element. The shifted element might be a sub- or superscript. If the property is present, the value overrides the element's baseline-shift attribute. */
68156816
baselineShift: string;
68166817
/**
68176818
* The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type.
@@ -35318,7 +35319,7 @@ declare var ShadowRoot: {
3531835319
};
3531935320

3532035321
/**
35321-
* The **`SharedWorker`** interface represents a specific kind of worker that can be accessed from several browsing contexts, such as several windows, iframes or even workers. They implement an interface different than dedicated workers and have a different global scope, SharedWorkerGlobalScope.
35322+
* The **`SharedWorker`** interface represents a specific kind of worker that can be accessed from several browsing contexts, such as multiple windows or iframes. Shared workers implement a different interface than dedicated workers, have a different global scope (SharedWorkerGlobalScope), and their constructor is not exposed in DedicatedWorkerGlobalScope, so they cannot be instantiated from dedicated workers.
3532235323
*
3532335324
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SharedWorker)
3532435325
*/

baselines/ts5.9/dom.generated.d.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5355,13 +5355,13 @@ declare var CSSFontFaceRule: {
53555355
};
53565356

53575357
/**
5358-
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule, letting developers assign for each font face a common name to specify features indices to be used in font-variant-alternates.
5358+
* The **`CSSFontFeatureValuesRule`** interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMapinterface.
53595359
*
53605360
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule)
53615361
*/
53625362
interface CSSFontFeatureValuesRule extends CSSRule {
53635363
/**
5364-
* The **`fontFamily`** property of the CSSConditionRule interface represents the name of the font family it applies to.
5364+
* The **`fontFamily`** property of the CSSFontFeatureValuesRule interface represents the name of the font family it applies to.
53655365
*
53665366
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFeatureValuesRule/fontFamily)
53675367
*/
@@ -6812,6 +6812,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
68126812
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/background-size)
68136813
*/
68146814
backgroundSize: string;
6815+
/** The baseline-shift CSS property repositions the dominant-baseline of a text element relative to the dominant-baseline of its parent text content element. The shifted element might be a sub- or superscript. If the property is present, the value overrides the element's baseline-shift attribute. */
68156816
baselineShift: string;
68166817
/**
68176818
* The baseline-source CSS property defines which baseline to use when inline-level boxes have multiple possible baselines, such as multi-line inline blocks or inline flex containers. The values allow for choosing between aligning to the box's first baseline, last baseline, or letting the browser decide automatically based on the box type.
@@ -35318,7 +35319,7 @@ declare var ShadowRoot: {
3531835319
};
3531935320

3532035321
/**
35321-
* The **`SharedWorker`** interface represents a specific kind of worker that can be accessed from several browsing contexts, such as several windows, iframes or even workers. They implement an interface different than dedicated workers and have a different global scope, SharedWorkerGlobalScope.
35322+
* The **`SharedWorker`** interface represents a specific kind of worker that can be accessed from several browsing contexts, such as multiple windows or iframes. Shared workers implement a different interface than dedicated workers, have a different global scope (SharedWorkerGlobalScope), and their constructor is not exposed in DedicatedWorkerGlobalScope, so they cannot be instantiated from dedicated workers.
3532235323
*
3532335324
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SharedWorker)
3532435325
*/

inputfiles/mdn.json

Lines changed: 98 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4054,15 +4054,105 @@
40544054
"pageType": "web-api-instance-property",
40554055
"summary": "The read-only style property of the CSSFontFaceRule interface contains a CSSStyleDeclaration object representing the descriptors available in the @font-face rule's body."
40564056
},
4057+
{
4058+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap",
4059+
"pageType": "web-api-interface",
4060+
"summary": "The CSSFontFeatureValuesMap interface of the CSS Object Model (CSSOM) represents an iterable and read-only set of the CSSFontFeatureValuesRule properties, such as swash, annotation, ornaments, etc."
4061+
},
4062+
{
4063+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/clear",
4064+
"pageType": "web-api-instance-method",
4065+
"summary": "The clear() method of the CSSFontFeatureValuesMap interface removes all declarations in the CSSFontFeatureValuesMap."
4066+
},
4067+
{
4068+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/delete",
4069+
"pageType": "web-api-instance-method",
4070+
"summary": "The delete() method of the CSSFontFeatureValuesMap interface removes the CSS declaration with the given property in the CSSFontFeatureValuesMap."
4071+
},
4072+
{
4073+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/entries",
4074+
"pageType": "web-api-instance-method",
4075+
"summary": "The entries() method of CSSFontFeatureValuesMap instances returns a new map iterator object that contains the [key, value] pairs for each declaration in this CSSFontFeatureValuesMap in insertion order."
4076+
},
4077+
{
4078+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/forEach",
4079+
"pageType": "web-api-instance-method",
4080+
"summary": "The forEach() method of CSSFontFeatureValuesMap instances executes a provided function once per each key/value pair in this map, in insertion order."
4081+
},
4082+
{
4083+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/get",
4084+
"pageType": "web-api-instance-method",
4085+
"summary": "The get() method of the CSSFontFeatureValuesMap interface returns value corresponding to the key in this CSSFontFeatureValuesMap, or undefined if there is none."
4086+
},
4087+
{
4088+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/has",
4089+
"pageType": "web-api-instance-method",
4090+
"summary": "The has() method of the CSSFontFeatureValuesMap interface returns a boolean indicating whether an entry with the specified key exists in this CSSFontFeatureValuesMap or not."
4091+
},
4092+
{
4093+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/keys",
4094+
"pageType": "web-api-instance-method",
4095+
"summary": "The keys() method of CSSFontFeatureValuesMap instances returns a new map iterator object that contains the [key, value] pairs for each declaration in this CSSFontFeatureValuesMap in insertion order."
4096+
},
4097+
{
4098+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/set",
4099+
"pageType": "web-api-instance-method",
4100+
"summary": "The set() method of CSSFontFeatureValuesMap instances adds a new entry with a specified key and value to this CSSFontFeatureValuesMap, or updates an existing entry if the key already exists."
4101+
},
4102+
{
4103+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/size",
4104+
"pageType": "web-api-instance-property",
4105+
"summary": "The size read-only property of the CSSFontFeatureValuesMap interface returns a positive integer containing the size of the CSSFontFeatureValuesMap object."
4106+
},
4107+
{
4108+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/Symbol.iterator",
4109+
"pageType": "web-api-instance-method",
4110+
"summary": "The [Symbol.iterator]() method of CSSFontFeatureValuesMap interface implements the iterable protocol and allows built-in iterators to be consumed by most syntaxes expecting iterables, such as the spread syntax and for...of loops. It returns the value of this, which is the iterator object itself."
4111+
},
4112+
{
4113+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesMap/values",
4114+
"pageType": "web-api-instance-method",
4115+
"summary": "The values() method of CSSFontFeatureValuesMap instances returns a new map iterator object that contains the [key, value] pairs for each declaration in this CSSFontFeatureValuesMap in insertion order."
4116+
},
40574117
{
40584118
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule",
40594119
"pageType": "web-api-interface",
4060-
"summary": "The CSSFontFeatureValuesRule interface represents an @font-feature-values at-rule, letting developers assign for each font face a common name to specify features indices to be used in font-variant-alternates."
4120+
"summary": "The CSSFontFeatureValuesRule interface represents an @font-feature-values at-rule. The values of its instance properties can be accessed with the CSSFontFeatureValuesMapinterface."
4121+
},
4122+
{
4123+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule/annotation",
4124+
"pageType": "web-api-instance-property",
4125+
"summary": "The read-only annotation property of the CSSFontFeatureValuesRule interface contains a CSSFontFeatureValuesMap object representing the user-defined-ident and feature index for a variable font which supports annotation()."
4126+
},
4127+
{
4128+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule/characterVariant",
4129+
"pageType": "web-api-instance-property",
4130+
"summary": "The read-only characterVariant property of the CSSFontFeatureValuesRule interface contains a CSSFontFeatureValuesMap object representing the user-defined-ident and feature index for a variable font which supports characterVariant()."
40614131
},
40624132
{
40634133
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule/fontFamily",
40644134
"pageType": "web-api-instance-property",
4065-
"summary": "The fontFamily property of the CSSConditionRule interface represents the name of the font family it applies to."
4135+
"summary": "The fontFamily property of the CSSFontFeatureValuesRule interface represents the name of the font family it applies to."
4136+
},
4137+
{
4138+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule/ornaments",
4139+
"pageType": "web-api-instance-property",
4140+
"summary": "The read-only ornaments property of the CSSFontFeatureValuesRule interface contains a CSSFontFeatureValuesMap object representing the user-defined-ident and feature index for a variable font which supports ornaments()."
4141+
},
4142+
{
4143+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule/styleset",
4144+
"pageType": "web-api-instance-property",
4145+
"summary": "The read-only styleset property of the CSSFontFeatureValuesRule interface contains a CSSFontFeatureValuesMap object representing the user-defined-ident and feature index for a variable font which supports styleset()."
4146+
},
4147+
{
4148+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule/stylistic",
4149+
"pageType": "web-api-instance-property",
4150+
"summary": "The read-only stylistic property of the CSSFontFeatureValuesRule interface contains a CSSFontFeatureValuesMap object representing the user-defined-ident and feature index for a variable font which supports stylistic()."
4151+
},
4152+
{
4153+
"mdn_url": "/en-US/docs/Web/API/CSSFontFeatureValuesRule/swash",
4154+
"pageType": "web-api-instance-property",
4155+
"summary": "The read-only swash property of the CSSFontFeatureValuesRule interface contains a CSSFontFeatureValuesMap object representing the developer-provided name and feature index for a variable font which supports swash()."
40664156
},
40674157
{
40684158
"mdn_url": "/en-US/docs/Web/API/CSSFontPaletteValuesRule",
@@ -27507,7 +27597,7 @@
2750727597
{
2750827598
"mdn_url": "/en-US/docs/Web/API/SharedWorker",
2750927599
"pageType": "web-api-interface",
27510-
"summary": "The SharedWorker interface represents a specific kind of worker that can be accessed from several browsing contexts, such as several windows, iframes or even workers. They implement an interface different than dedicated workers and have a different global scope, SharedWorkerGlobalScope."
27600+
"summary": "The SharedWorker interface represents a specific kind of worker that can be accessed from several browsing contexts, such as multiple windows or iframes. Shared workers implement a different interface than dedicated workers, have a different global scope (SharedWorkerGlobalScope), and their constructor is not exposed in DedicatedWorkerGlobalScope, so they cannot be instantiated from dedicated workers."
2751127601
},
2751227602
{
2751327603
"mdn_url": "/en-US/docs/Web/API/SharedWorker/error_event",
@@ -39774,6 +39864,11 @@
3977439864
"pageType": "css-property",
3977539865
"summary": "The background-size CSS property sets the size of the element's background image.\nThe image can be left to its natural size, stretched, or constrained to fit the available space."
3977639866
},
39867+
{
39868+
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/baseline-shift",
39869+
"pageType": "css-property",
39870+
"summary": "The baseline-shift CSS property repositions the dominant-baseline of a text element relative to the dominant-baseline of its parent text content element. The shifted element might be a sub- or superscript. If the property is present, the value overrides the element's baseline-shift attribute."
39871+
},
3977739872
{
3977839873
"mdn_url": "/en-US/docs/Web/CSS/Reference/Properties/baseline-source",
3977939874
"pageType": "css-property",

0 commit comments

Comments
 (0)