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
2 changes: 1 addition & 1 deletion baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19055,7 +19055,7 @@ interface HTMLImageElement extends HTMLElement {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/crossOrigin)
*/
crossOrigin: string | null;
crossOrigin: "anonymous" | "use-credentials" | null;
/**
* The **`currentSrc`** read-only property of the HTMLImageElement interface indicates the URL of the image selected by the browser to load.
*
Expand Down
2 changes: 1 addition & 1 deletion baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19037,7 +19037,7 @@ interface HTMLImageElement extends HTMLElement {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/crossOrigin)
*/
crossOrigin: string | null;
crossOrigin: "anonymous" | "use-credentials" | null;
/**
* The **`currentSrc`** read-only property of the HTMLImageElement interface indicates the URL of the image selected by the browser to load.
*
Expand Down
2 changes: 1 addition & 1 deletion baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19052,7 +19052,7 @@ interface HTMLImageElement extends HTMLElement {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/crossOrigin)
*/
crossOrigin: string | null;
crossOrigin: "anonymous" | "use-credentials" | null;
/**
* The **`currentSrc`** read-only property of the HTMLImageElement interface indicates the URL of the image selected by the browser to load.
*
Expand Down
2 changes: 1 addition & 1 deletion baselines/ts5.9/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19052,7 +19052,7 @@ interface HTMLImageElement extends HTMLElement {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLImageElement/crossOrigin)
*/
crossOrigin: string | null;
crossOrigin: "anonymous" | "use-credentials" | null;
/**
* The **`currentSrc`** read-only property of the HTMLImageElement interface indicates the URL of the image selected by the browser to load.
*
Expand Down
1 change: 1 addition & 0 deletions inputfiles/patches/html.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ interface-mixin WindowEventHandlers {
interface HTMLImageElement {
property decoding overrideType=#""async" | "sync" | "auto""#
property loading overrideType=#""eager" | "lazy""#
property crossOrigin overrideType=#""anonymous" | "use-credentials""#
}

interface HTMLInputElement {
Expand Down