Skip to content

Commit bbd44e9

Browse files
miunauRich-Harris
andauthored
fix: Add elementtiming HTMLAttribute, remove crossorigin from HTMLInputAttributes (#10921)
* Removed `crossorigin` from HTMLInputAttributes * Added `elementtiming` attribute to HTMLAttributes * changeset --------- Co-authored-by: Rich Harris <[email protected]>
1 parent b7a0d80 commit bbd44e9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/red-cycles-pretend.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"svelte": patch
3+
---
4+
5+
fix: Add `elementtiming` HTMLAttribute, remove `crossorigin` from HTMLInputAttributes

packages/svelte/elements.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,6 +712,7 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
712712
contextmenu?: string | undefined | null;
713713
dir?: string | undefined | null;
714714
draggable?: Booleanish | undefined | null;
715+
elementtiming?: string | undefined | null;
715716
enterkeyhint?:
716717
| 'enter'
717718
| 'done'
@@ -1029,7 +1030,6 @@ export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
10291030
autocomplete?: string | undefined | null;
10301031
capture?: boolean | 'user' | 'environment' | undefined | null; // https://www.w3.org/TR/html-media-capture/#the-capture-attribute
10311032
checked?: boolean | undefined | null;
1032-
crossorigin?: string | undefined | null;
10331033
dirname?: string | undefined | null;
10341034
disabled?: boolean | undefined | null;
10351035
form?: string | undefined | null;

0 commit comments

Comments
 (0)