Skip to content

Update core dependencies #1988

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 19, 2025
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
38 changes: 38 additions & 0 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3737,6 +3737,43 @@ declare var CDATASection: {
new(): CDATASection;
};

/**
* The `CSPViolationReportBody` interface is an extension of the Reporting API that represents the body of a Content Security Policy (CSP) violation report.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody)
*/
interface CSPViolationReportBody extends ReportBody {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/blockedURL) */
readonly blockedURL: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/columnNumber) */
readonly columnNumber: number | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/disposition) */
readonly disposition: SecurityPolicyViolationEventDisposition;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/documentURL) */
readonly documentURL: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/effectiveDirective) */
readonly effectiveDirective: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/lineNumber) */
readonly lineNumber: number | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/originalPolicy) */
readonly originalPolicy: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/referrer) */
readonly referrer: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sample) */
readonly sample: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sourceFile) */
readonly sourceFile: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/statusCode) */
readonly statusCode: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/toJSON) */
toJSON(): any;
}

declare var CSPViolationReportBody: {
prototype: CSPViolationReportBody;
new(): CSPViolationReportBody;
};

/**
* The **`CSSAnimation`** interface of the Web Animations API represents an Animation object.
*
Expand Down Expand Up @@ -12569,6 +12606,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
hreflang: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
imageSizes: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSrcset) */
imageSrcset: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
integrity: string;
Expand Down
38 changes: 38 additions & 0 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3737,6 +3737,43 @@ declare var CDATASection: {
new(): CDATASection;
};

/**
* The `CSPViolationReportBody` interface is an extension of the Reporting API that represents the body of a Content Security Policy (CSP) violation report.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody)
*/
interface CSPViolationReportBody extends ReportBody {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/blockedURL) */
readonly blockedURL: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/columnNumber) */
readonly columnNumber: number | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/disposition) */
readonly disposition: SecurityPolicyViolationEventDisposition;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/documentURL) */
readonly documentURL: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/effectiveDirective) */
readonly effectiveDirective: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/lineNumber) */
readonly lineNumber: number | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/originalPolicy) */
readonly originalPolicy: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/referrer) */
readonly referrer: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sample) */
readonly sample: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sourceFile) */
readonly sourceFile: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/statusCode) */
readonly statusCode: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/toJSON) */
toJSON(): any;
}

declare var CSPViolationReportBody: {
prototype: CSPViolationReportBody;
new(): CSPViolationReportBody;
};

/**
* The **`CSSAnimation`** interface of the Web Animations API represents an Animation object.
*
Expand Down Expand Up @@ -12554,6 +12591,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
hreflang: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
imageSizes: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSrcset) */
imageSrcset: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
integrity: string;
Expand Down
2 changes: 1 addition & 1 deletion baselines/ts5.5/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4588,7 +4588,7 @@ declare var MediaSourceHandle: {
};

/**
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrames.
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrame objects.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrackProcessor)
*/
Expand Down
38 changes: 38 additions & 0 deletions baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3737,6 +3737,43 @@ declare var CDATASection: {
new(): CDATASection;
};

/**
* The `CSPViolationReportBody` interface is an extension of the Reporting API that represents the body of a Content Security Policy (CSP) violation report.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody)
*/
interface CSPViolationReportBody extends ReportBody {
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/blockedURL) */
readonly blockedURL: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/columnNumber) */
readonly columnNumber: number | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/disposition) */
readonly disposition: SecurityPolicyViolationEventDisposition;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/documentURL) */
readonly documentURL: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/effectiveDirective) */
readonly effectiveDirective: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/lineNumber) */
readonly lineNumber: number | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/originalPolicy) */
readonly originalPolicy: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/referrer) */
readonly referrer: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sample) */
readonly sample: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/sourceFile) */
readonly sourceFile: string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/statusCode) */
readonly statusCode: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSPViolationReportBody/toJSON) */
toJSON(): any;
}

declare var CSPViolationReportBody: {
prototype: CSPViolationReportBody;
new(): CSPViolationReportBody;
};

/**
* The **`CSSAnimation`** interface of the Web Animations API represents an Animation object.
*
Expand Down Expand Up @@ -12569,6 +12606,7 @@ interface HTMLLinkElement extends HTMLElement, LinkStyle {
hreflang: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSizes) */
imageSizes: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/imageSrcset) */
imageSrcset: string;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLLinkElement/integrity) */
integrity: string;
Expand Down
2 changes: 1 addition & 1 deletion baselines/ts5.6/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4588,7 +4588,7 @@ declare var MediaSourceHandle: {
};

/**
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrames.
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrame objects.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrackProcessor)
*/
Expand Down
2 changes: 1 addition & 1 deletion baselines/webworker.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4588,7 +4588,7 @@ declare var MediaSourceHandle: {
};

/**
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrames.
* The **`MediaStreamTrackProcessor`** interface of the Insertable Streams for MediaStreamTrack API consumes a video MediaStreamTrack object's source and generates a stream of VideoFrame objects.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MediaStreamTrackProcessor)
*/
Expand Down
2 changes: 1 addition & 1 deletion inputfiles/mdn
Submodule mdn updated 51 files
+1 −1 files/en-us/games/publishing_games/game_distribution/index.md
+1 −1 files/en-us/games/publishing_games/game_promotion/index.md
+7 −9 files/en-us/glossary/blink_element/index.md
+125 −155 files/en-us/learn_web_development/getting_started/your_first_website/styling_the_content/index.md
+10 −7 files/en-us/learn_web_development/getting_started/your_first_website/what_will_your_website_look_like/index.md
+8 −7 files/en-us/mozilla/add-ons/webextensions/internationalization/index.md
+3 −3 files/en-us/web/api/audioworkletprocessor/audioworkletprocessor/index.md
+2 −0 files/en-us/web/api/document/index.md
+128 −0 files/en-us/web/api/document/movebefore/index.md
+2 −0 files/en-us/web/api/documentfragment/index.md
+179 −0 files/en-us/web/api/documentfragment/movebefore/index.md
+3 −3 files/en-us/web/api/dommatrix/index.md
+3 −3 files/en-us/web/api/dommatrixreadonly/index.md
+1 −1 files/en-us/web/api/domquad/domquad/index.md
+7 −4 files/en-us/web/api/domquad/index.md
+1 −1 files/en-us/web/api/domquad/p1/index.md
+1 −1 files/en-us/web/api/domquad/p2/index.md
+1 −1 files/en-us/web/api/domquad/p3/index.md
+1 −1 files/en-us/web/api/domquad/p4/index.md
+2 −0 files/en-us/web/api/element/index.md
+282 −0 files/en-us/web/api/element/movebefore/index.md
+1 −1 files/en-us/web/api/filesystemdirectoryentry/getdirectory/index.md
+1 −1 files/en-us/web/api/filesystemdirectoryentry/getfile/index.md
+8 −8 files/en-us/web/api/filesystemdirectoryentry/removerecursively/index.md
+3 −3 files/en-us/web/api/filesystementry/copyto/index.md
+3 −3 files/en-us/web/api/filesystementry/getmetadata/index.md
+3 −3 files/en-us/web/api/filesystementry/getparent/index.md
+3 −3 files/en-us/web/api/filesystementry/moveto/index.md
+5 −5 files/en-us/web/api/filesystementry/remove/index.md
+2 −2 files/en-us/web/api/filesystemfileentry/createwriter/index.md
+1 −4 files/en-us/web/api/htmlheadelement/index.md
+2 −2 files/en-us/web/api/insertable_streams_for_mediastreamtrack_api/index.md
+29 −0 files/en-us/web/api/mathmlelement/autofocus/index.md
+79 −0 files/en-us/web/api/mathmlelement/blur/index.md
+59 −0 files/en-us/web/api/mathmlelement/dataset/index.md
+79 −0 files/en-us/web/api/mathmlelement/focus/index.md
+12 −1 files/en-us/web/api/mathmlelement/index.md
+73 −0 files/en-us/web/api/mathmlelement/tabindex/index.md
+9 −11 files/en-us/web/api/mediastreamtrackprocessor/index.md
+1 −1 files/en-us/web/api/rtcpeerconnection/generatecertificate_static/index.md
+1 −1 files/en-us/web/api/rtcpeerconnection/getconfiguration/index.md
+3 −3 files/en-us/web/api/rtcrtptransceiver/setcodecpreferences/index.md
+1 −1 files/en-us/web/api/rtctrackevent/rtctrackevent/index.md
+0 −1 files/en-us/web/api/svg_api/index.md
+6 −12 files/en-us/web/api/videotrackgenerator/index.md
+27 −4 files/en-us/web/api/web_components/using_custom_elements/index.md
+1 −1 files/en-us/web/api/window/requestfilesystem/index.md
+161 −440 files/en-us/web/css/clip-path/index.md
+2 −2 files/en-us/web/javascript/reference/statements/import/with/index.md
+9 −36 files/en-us/web/mathml/reference/global_attributes/index.md
+3 −1 files/en-us/web/xml/xslt/reference/element/processing-instruction/index.md
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.