Skip to content
Merged
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
6 changes: 5 additions & 1 deletion baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1835,6 +1835,10 @@ interface PannerOptions extends AudioNodeOptions {
rolloffFactor?: number;
}

interface ParseHTMLUnsafeOptions {
sanitizer?: Sanitizer | SanitizerConfig | SanitizerPresets;
}

interface PayerErrors {
email?: string;
name?: string;
Expand Down Expand Up @@ -13660,7 +13664,7 @@ declare var Document: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
*/
parseHTMLUnsafe(html: string, options?: SetHTMLUnsafeOptions): Document;
parseHTMLUnsafe(html: string, options?: ParseHTMLUnsafeOptions): Document;
};

/**
Expand Down
6 changes: 5 additions & 1 deletion baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1832,6 +1832,10 @@ interface PannerOptions extends AudioNodeOptions {
rolloffFactor?: number;
}

interface ParseHTMLUnsafeOptions {
sanitizer?: Sanitizer | SanitizerConfig | SanitizerPresets;
}

interface PayerErrors {
email?: string;
name?: string;
Expand Down Expand Up @@ -13649,7 +13653,7 @@ declare var Document: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
*/
parseHTMLUnsafe(html: string, options?: SetHTMLUnsafeOptions): Document;
parseHTMLUnsafe(html: string, options?: ParseHTMLUnsafeOptions): Document;
};

/**
Expand Down
6 changes: 5 additions & 1 deletion baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1832,6 +1832,10 @@ interface PannerOptions extends AudioNodeOptions {
rolloffFactor?: number;
}

interface ParseHTMLUnsafeOptions {
sanitizer?: Sanitizer | SanitizerConfig | SanitizerPresets;
}

interface PayerErrors {
email?: string;
name?: string;
Expand Down Expand Up @@ -13657,7 +13661,7 @@ declare var Document: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
*/
parseHTMLUnsafe(html: string, options?: SetHTMLUnsafeOptions): Document;
parseHTMLUnsafe(html: string, options?: ParseHTMLUnsafeOptions): Document;
};

/**
Expand Down
6 changes: 5 additions & 1 deletion baselines/ts5.9/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1832,6 +1832,10 @@ interface PannerOptions extends AudioNodeOptions {
rolloffFactor?: number;
}

interface ParseHTMLUnsafeOptions {
sanitizer?: Sanitizer | SanitizerConfig | SanitizerPresets;
}

interface PayerErrors {
email?: string;
name?: string;
Expand Down Expand Up @@ -13657,7 +13661,7 @@ declare var Document: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
*/
parseHTMLUnsafe(html: string, options?: SetHTMLUnsafeOptions): Document;
parseHTMLUnsafe(html: string, options?: ParseHTMLUnsafeOptions): Document;
};

/**
Expand Down
4 changes: 4 additions & 0 deletions inputfiles/patches/html.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -210,4 +210,8 @@ removals {
dictionary CanvasRenderingContext2DSettings {
member colorType // Blink-only as of 2025-12, being tested in WebKit
}

dictionary SetHTMLUnsafeOptions {
member runScripts // Blink-only as of 2026-07
}
}
3 changes: 3 additions & 0 deletions inputfiles/patches/webauthn.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ removals {
member getCredBlob // Blink only as of 2026-05
member hmacGetSecret // No implementation as of 2026-05
member payment // Blink test only as of 2026-05
member pinComplexityPolicy // No implementation as of 2026-07
member remoteClientDataJSON // No implementation as of 2026-05
}

Expand All @@ -30,6 +31,8 @@ removals {
dictionary AuthenticationExtensionsClientOutputs {
// (same as *Inputs)
member appidExclude // No implementation as of 2026-05
member credBlob // Blink only as of 2026-07
member getCredBlob // Blink only as of 2026-07
member hmacGetSecret // No implementation as of 2026-05
member payment // Blink only as of 2026-05
member remoteClientDataJSON // No implementation as of 2026-07
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading