Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2701,6 +2701,11 @@ interface ShareData {
url?: string;
}

interface SharedWorkerOptions extends WorkerOptions {
extendedLifetime?: boolean;
sameSiteCookies?: SameSiteCookiesType;
}

interface ShowPopoverOptions {
source?: HTMLElement;
}
Expand Down Expand Up @@ -7997,7 +8002,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
left: string;
/**
* The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
* The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
*/
Expand Down Expand Up @@ -9762,7 +9767,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
wordBreak: string;
/**
* The word-spacing CSS property sets the length of space between words and between tags.
* The word-spacing CSS property sets the spacing between words and between tags.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
*/
Expand Down Expand Up @@ -35470,7 +35475,7 @@ interface SharedWorker extends EventTarget, AbstractWorker {

declare var SharedWorker: {
prototype: SharedWorker;
new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker;
new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker;
};

interface Slottable {
Expand Down Expand Up @@ -44619,6 +44624,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
type SameSiteCookiesType = "all" | "none";
type SanitizerPresets = "default";
type ScrollAxis = "block" | "inline" | "x" | "y";
type ScrollBehavior = "auto" | "instant" | "smooth";
Expand Down
12 changes: 9 additions & 3 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2698,6 +2698,11 @@ interface ShareData {
url?: string;
}

interface SharedWorkerOptions extends WorkerOptions {
extendedLifetime?: boolean;
sameSiteCookies?: SameSiteCookiesType;
}

interface ShowPopoverOptions {
source?: HTMLElement;
}
Expand Down Expand Up @@ -7987,7 +7992,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
left: string;
/**
* The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
* The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
*/
Expand Down Expand Up @@ -9752,7 +9757,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
wordBreak: string;
/**
* The word-spacing CSS property sets the length of space between words and between tags.
* The word-spacing CSS property sets the spacing between words and between tags.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
*/
Expand Down Expand Up @@ -35445,7 +35450,7 @@ interface SharedWorker extends EventTarget, AbstractWorker {

declare var SharedWorker: {
prototype: SharedWorker;
new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker;
new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker;
};

interface Slottable {
Expand Down Expand Up @@ -44593,6 +44598,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
type SameSiteCookiesType = "all" | "none";
type SanitizerPresets = "default";
type ScrollAxis = "block" | "inline" | "x" | "y";
type ScrollBehavior = "auto" | "instant" | "smooth";
Expand Down
12 changes: 9 additions & 3 deletions baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2698,6 +2698,11 @@ interface ShareData {
url?: string;
}

interface SharedWorkerOptions extends WorkerOptions {
extendedLifetime?: boolean;
sameSiteCookies?: SameSiteCookiesType;
}

interface ShowPopoverOptions {
source?: HTMLElement;
}
Expand Down Expand Up @@ -7994,7 +7999,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
left: string;
/**
* The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
* The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
*/
Expand Down Expand Up @@ -9759,7 +9764,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
wordBreak: string;
/**
* The word-spacing CSS property sets the length of space between words and between tags.
* The word-spacing CSS property sets the spacing between words and between tags.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
*/
Expand Down Expand Up @@ -35467,7 +35472,7 @@ interface SharedWorker extends EventTarget, AbstractWorker {

declare var SharedWorker: {
prototype: SharedWorker;
new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker;
new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker;
};

interface Slottable {
Expand Down Expand Up @@ -44616,6 +44621,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
type SameSiteCookiesType = "all" | "none";
type SanitizerPresets = "default";
type ScrollAxis = "block" | "inline" | "x" | "y";
type ScrollBehavior = "auto" | "instant" | "smooth";
Expand Down
12 changes: 9 additions & 3 deletions baselines/ts5.9/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2698,6 +2698,11 @@ interface ShareData {
url?: string;
}

interface SharedWorkerOptions extends WorkerOptions {
extendedLifetime?: boolean;
sameSiteCookies?: SameSiteCookiesType;
}

interface ShowPopoverOptions {
source?: HTMLElement;
}
Expand Down Expand Up @@ -7994,7 +7999,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
left: string;
/**
* The letter-spacing CSS property sets the horizontal spacing behavior between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing causes characters to spread farther apart, while negative values of letter-spacing bring characters closer together.
* The letter-spacing CSS property sets the spacing between text characters. This value is added to the natural spacing between characters while rendering the text. Positive values of letter-spacing spread characters further apart, while negative values of letter-spacing bring characters closer together.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/letter-spacing)
*/
Expand Down Expand Up @@ -9759,7 +9764,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
wordBreak: string;
/**
* The word-spacing CSS property sets the length of space between words and between tags.
* The word-spacing CSS property sets the spacing between words and between tags.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/word-spacing)
*/
Expand Down Expand Up @@ -35467,7 +35472,7 @@ interface SharedWorker extends EventTarget, AbstractWorker {

declare var SharedWorker: {
prototype: SharedWorker;
new(scriptURL: string | URL, options?: string | WorkerOptions): SharedWorker;
new(scriptURL: string | URL, options?: string | SharedWorkerOptions): SharedWorker;
};

interface Slottable {
Expand Down Expand Up @@ -44616,6 +44621,7 @@ type ResidentKeyRequirement = "discouraged" | "preferred" | "required";
type ResizeObserverBoxOptions = "border-box" | "content-box" | "device-pixel-content-box";
type ResizeQuality = "high" | "low" | "medium" | "pixelated";
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect";
type SameSiteCookiesType = "all" | "none";
type SanitizerPresets = "default";
type ScrollAxis = "block" | "inline" | "x" | "y";
type ScrollBehavior = "auto" | "instant" | "smooth";
Expand Down
Loading