File tree Expand file tree Collapse file tree 5 files changed +7
-12
lines changed Expand file tree Collapse file tree 5 files changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -16403,7 +16403,7 @@ interface HTMLOrSVGElement {
16403
16403
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) */
16404
16404
readonly dataset: DOMStringMap;
16405
16405
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/nonce) */
16406
- nonce?: string;
16406
+ nonce?: string | undefined ;
16407
16407
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/tabIndex) */
16408
16408
tabIndex: number;
16409
16409
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/blur) */
Original file line number Diff line number Diff line change @@ -16385,7 +16385,7 @@ interface HTMLOrSVGElement {
16385
16385
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) */
16386
16386
readonly dataset: DOMStringMap;
16387
16387
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/nonce) */
16388
- nonce?: string;
16388
+ nonce?: string | undefined ;
16389
16389
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/tabIndex) */
16390
16390
tabIndex: number;
16391
16391
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/blur) */
Original file line number Diff line number Diff line change @@ -16403,7 +16403,7 @@ interface HTMLOrSVGElement {
16403
16403
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/dataset) */
16404
16404
readonly dataset: DOMStringMap;
16405
16405
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/nonce) */
16406
- nonce?: string;
16406
+ nonce?: string | undefined ;
16407
16407
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/tabIndex) */
16408
16408
tabIndex: number;
16409
16409
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/blur) */
Original file line number Diff line number Diff line change 38
38
}
39
39
}
40
40
},
41
- "HTMLOrSVGElement" : {
42
- "properties" : {
43
- "property" : {
44
- "nonce" : {
45
- "name" : " nonce?"
46
- }
47
- }
48
- }
49
- },
50
41
"WebGLRenderingContextBase" : {
51
42
"methods" : {
52
43
"method" : {
Original file line number Diff line number Diff line change @@ -4,3 +4,7 @@ enum InsertPosition {
4
4
afterbegin
5
5
afterend
6
6
}
7
+
8
+ interface-mixin HTMLOrSVGElement {
9
+ property nonce optional= #true
10
+ }
You can’t perform that action at this time.
0 commit comments