Skip to content

Commit 147ec33

Browse files
authored
Merge pull request #626 from deiga/make-htmlelement-nonce-optional
Make HTMLElement.nonce optional
2 parents f197190 + 576ecba commit 147ec33

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

baselines/dom.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7789,7 +7789,7 @@ declare var HTMLOptionsCollection: {
77897789

77907790
interface HTMLOrSVGElement {
77917791
readonly dataset: DOMStringMap;
7792-
nonce: string;
7792+
nonce?: string;
77937793
tabIndex: number;
77947794
blur(): void;
77957795
focus(options?: FocusOptions): void;

inputfiles/overridingTypes.json

+10
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,16 @@
133133
}
134134
}
135135
},
136+
"HTMLOrSVGElement": {
137+
"name": "HTMLOrSVGElement",
138+
"properties": {
139+
"property": {
140+
"nonce": {
141+
"name": "nonce?"
142+
}
143+
}
144+
}
145+
},
136146
"RandomSource": {
137147
"name": "RandomSource",
138148
"methods": {

0 commit comments

Comments
 (0)