@webref/idl 3.66.0 → 3.66.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/IndexedDB.idl +19 -4
- package/cookiestore.idl +0 -6
- package/crash-reporting.idl +4 -4
- package/css-typed-om.idl +2 -2
- package/element-timing.idl +1 -1
- package/fedcm.idl +3 -4
- package/fetch.idl +13 -0
- package/html.idl +329 -329
- package/largest-contentful-paint.idl +1 -0
- package/notifications.idl +3 -0
- package/package.json +1 -1
- package/privacy-preserving-attribution.idl +1 -1
- package/push-api.idl +5 -3
- package/webnn.idl +4 -0
- package/webrtc-stats.idl +1 -1
package/html.idl
CHANGED
|
@@ -110,21 +110,21 @@ interface HTMLElement : Element {
|
|
|
110
110
|
[HTMLConstructor] constructor();
|
|
111
111
|
|
|
112
112
|
// metadata attributes
|
|
113
|
-
[CEReactions] attribute DOMString title;
|
|
114
|
-
[CEReactions] attribute DOMString lang;
|
|
113
|
+
[CEReactions, Reflect] attribute DOMString title;
|
|
114
|
+
[CEReactions, Reflect] attribute DOMString lang;
|
|
115
115
|
[CEReactions] attribute boolean translate;
|
|
116
116
|
[CEReactions] attribute DOMString dir;
|
|
117
117
|
|
|
118
118
|
// user interaction
|
|
119
119
|
[CEReactions] attribute (boolean or unrestricted double or DOMString)? hidden;
|
|
120
|
-
[CEReactions] attribute boolean inert;
|
|
120
|
+
[CEReactions, Reflect] attribute boolean inert;
|
|
121
121
|
undefined click();
|
|
122
|
-
[CEReactions] attribute DOMString accessKey;
|
|
122
|
+
[CEReactions, Reflect] attribute DOMString accessKey;
|
|
123
123
|
readonly attribute DOMString accessKeyLabel;
|
|
124
124
|
[CEReactions] attribute boolean draggable;
|
|
125
125
|
[CEReactions] attribute boolean spellcheck;
|
|
126
|
-
[CEReactions] attribute DOMString writingSuggestions;
|
|
127
|
-
[CEReactions] attribute DOMString autocapitalize;
|
|
126
|
+
[CEReactions, ReflectSetter] attribute DOMString writingSuggestions;
|
|
127
|
+
[CEReactions, ReflectSetter] attribute DOMString autocapitalize;
|
|
128
128
|
[CEReactions] attribute boolean autocorrect;
|
|
129
129
|
|
|
130
130
|
[CEReactions] attribute [LegacyNullToEmptyString] DOMString innerText;
|
|
@@ -160,8 +160,8 @@ interface mixin HTMLOrSVGElement {
|
|
|
160
160
|
[SameObject] readonly attribute DOMStringMap dataset;
|
|
161
161
|
attribute DOMString nonce; // intentionally no [CEReactions]
|
|
162
162
|
|
|
163
|
-
[CEReactions] attribute boolean autofocus;
|
|
164
|
-
[CEReactions] attribute long tabIndex;
|
|
163
|
+
[CEReactions, Reflect] attribute boolean autofocus;
|
|
164
|
+
[CEReactions, ReflectSetter] attribute long tabIndex;
|
|
165
165
|
undefined focus(optional FocusOptions options = {});
|
|
166
166
|
undefined blur();
|
|
167
167
|
};
|
|
@@ -197,29 +197,29 @@ interface HTMLTitleElement : HTMLElement {
|
|
|
197
197
|
interface HTMLBaseElement : HTMLElement {
|
|
198
198
|
[HTMLConstructor] constructor();
|
|
199
199
|
|
|
200
|
-
[CEReactions] attribute USVString href;
|
|
201
|
-
[CEReactions] attribute DOMString target;
|
|
200
|
+
[CEReactions, ReflectSetter] attribute USVString href;
|
|
201
|
+
[CEReactions, Reflect] attribute DOMString target;
|
|
202
202
|
};
|
|
203
203
|
|
|
204
204
|
[Exposed=Window]
|
|
205
205
|
interface HTMLLinkElement : HTMLElement {
|
|
206
206
|
[HTMLConstructor] constructor();
|
|
207
207
|
|
|
208
|
-
[CEReactions] attribute USVString href;
|
|
208
|
+
[CEReactions, ReflectURL] attribute USVString href;
|
|
209
209
|
[CEReactions] attribute DOMString? crossOrigin;
|
|
210
|
-
[CEReactions] attribute DOMString rel;
|
|
210
|
+
[CEReactions, Reflect] attribute DOMString rel;
|
|
211
211
|
[CEReactions] attribute DOMString as;
|
|
212
|
-
[SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
|
|
213
|
-
[CEReactions] attribute DOMString media;
|
|
214
|
-
[CEReactions] attribute DOMString integrity;
|
|
215
|
-
[CEReactions] attribute DOMString hreflang;
|
|
216
|
-
[CEReactions] attribute DOMString type;
|
|
217
|
-
[SameObject, PutForwards=value] readonly attribute DOMTokenList sizes;
|
|
218
|
-
[CEReactions] attribute USVString imageSrcset;
|
|
219
|
-
[CEReactions] attribute DOMString imageSizes;
|
|
212
|
+
[SameObject, PutForwards=value, Reflect="rel"] readonly attribute DOMTokenList relList;
|
|
213
|
+
[CEReactions, Reflect] attribute DOMString media;
|
|
214
|
+
[CEReactions, Reflect] attribute DOMString integrity;
|
|
215
|
+
[CEReactions, Reflect] attribute DOMString hreflang;
|
|
216
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
217
|
+
[SameObject, PutForwards=value, Reflect] readonly attribute DOMTokenList sizes;
|
|
218
|
+
[CEReactions, Reflect] attribute USVString imageSrcset;
|
|
219
|
+
[CEReactions, Reflect] attribute DOMString imageSizes;
|
|
220
220
|
[CEReactions] attribute DOMString referrerPolicy;
|
|
221
|
-
[SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;
|
|
222
|
-
[CEReactions] attribute boolean disabled;
|
|
221
|
+
[SameObject, PutForwards=value, Reflect] readonly attribute DOMTokenList blocking;
|
|
222
|
+
[CEReactions, Reflect] attribute boolean disabled;
|
|
223
223
|
[CEReactions] attribute DOMString fetchPriority;
|
|
224
224
|
|
|
225
225
|
// also has obsolete members
|
|
@@ -230,10 +230,10 @@ HTMLLinkElement includes LinkStyle;
|
|
|
230
230
|
interface HTMLMetaElement : HTMLElement {
|
|
231
231
|
[HTMLConstructor] constructor();
|
|
232
232
|
|
|
233
|
-
[CEReactions] attribute DOMString name;
|
|
234
|
-
[CEReactions] attribute DOMString httpEquiv;
|
|
235
|
-
[CEReactions] attribute DOMString content;
|
|
236
|
-
[CEReactions] attribute DOMString media;
|
|
233
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
234
|
+
[CEReactions, Reflect="http-equiv"] attribute DOMString httpEquiv;
|
|
235
|
+
[CEReactions, Reflect] attribute DOMString content;
|
|
236
|
+
[CEReactions, Reflect] attribute DOMString media;
|
|
237
237
|
|
|
238
238
|
// also has obsolete members
|
|
239
239
|
};
|
|
@@ -243,8 +243,8 @@ interface HTMLStyleElement : HTMLElement {
|
|
|
243
243
|
[HTMLConstructor] constructor();
|
|
244
244
|
|
|
245
245
|
attribute boolean disabled;
|
|
246
|
-
[CEReactions] attribute DOMString media;
|
|
247
|
-
[SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;
|
|
246
|
+
[CEReactions, Reflect] attribute DOMString media;
|
|
247
|
+
[SameObject, PutForwards=value, Reflect] readonly attribute DOMTokenList blocking;
|
|
248
248
|
|
|
249
249
|
// also has obsolete members
|
|
250
250
|
};
|
|
@@ -291,16 +291,16 @@ interface HTMLPreElement : HTMLElement {
|
|
|
291
291
|
interface HTMLQuoteElement : HTMLElement {
|
|
292
292
|
[HTMLConstructor] constructor();
|
|
293
293
|
|
|
294
|
-
[CEReactions] attribute USVString cite;
|
|
294
|
+
[CEReactions, ReflectURL] attribute USVString cite;
|
|
295
295
|
};
|
|
296
296
|
|
|
297
297
|
[Exposed=Window]
|
|
298
298
|
interface HTMLOListElement : HTMLElement {
|
|
299
299
|
[HTMLConstructor] constructor();
|
|
300
300
|
|
|
301
|
-
[CEReactions] attribute boolean reversed;
|
|
302
|
-
[CEReactions] attribute long start;
|
|
303
|
-
[CEReactions] attribute DOMString type;
|
|
301
|
+
[CEReactions, Reflect] attribute boolean reversed;
|
|
302
|
+
[CEReactions, Reflect, ReflectDefault=1] attribute long start;
|
|
303
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
304
304
|
|
|
305
305
|
// also has obsolete members
|
|
306
306
|
};
|
|
@@ -323,7 +323,7 @@ interface HTMLMenuElement : HTMLElement {
|
|
|
323
323
|
interface HTMLLIElement : HTMLElement {
|
|
324
324
|
[HTMLConstructor] constructor();
|
|
325
325
|
|
|
326
|
-
[CEReactions] attribute long value;
|
|
326
|
+
[CEReactions, Reflect] attribute long value;
|
|
327
327
|
|
|
328
328
|
// also has obsolete members
|
|
329
329
|
};
|
|
@@ -346,13 +346,13 @@ interface HTMLDivElement : HTMLElement {
|
|
|
346
346
|
interface HTMLAnchorElement : HTMLElement {
|
|
347
347
|
[HTMLConstructor] constructor();
|
|
348
348
|
|
|
349
|
-
[CEReactions] attribute DOMString target;
|
|
350
|
-
[CEReactions] attribute DOMString download;
|
|
351
|
-
[CEReactions] attribute USVString ping;
|
|
352
|
-
[CEReactions] attribute DOMString rel;
|
|
353
|
-
[SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
|
|
354
|
-
[CEReactions] attribute DOMString hreflang;
|
|
355
|
-
[CEReactions] attribute DOMString type;
|
|
349
|
+
[CEReactions, Reflect] attribute DOMString target;
|
|
350
|
+
[CEReactions, Reflect] attribute DOMString download;
|
|
351
|
+
[CEReactions, Reflect] attribute USVString ping;
|
|
352
|
+
[CEReactions, Reflect] attribute DOMString rel;
|
|
353
|
+
[SameObject, PutForwards=value, Reflect="rel"] readonly attribute DOMTokenList relList;
|
|
354
|
+
[CEReactions, Reflect] attribute DOMString hreflang;
|
|
355
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
356
356
|
|
|
357
357
|
[CEReactions] attribute DOMString text;
|
|
358
358
|
|
|
@@ -366,14 +366,14 @@ HTMLAnchorElement includes HTMLHyperlinkElementUtils;
|
|
|
366
366
|
interface HTMLDataElement : HTMLElement {
|
|
367
367
|
[HTMLConstructor] constructor();
|
|
368
368
|
|
|
369
|
-
[CEReactions] attribute DOMString value;
|
|
369
|
+
[CEReactions, Reflect] attribute DOMString value;
|
|
370
370
|
};
|
|
371
371
|
|
|
372
372
|
[Exposed=Window]
|
|
373
373
|
interface HTMLTimeElement : HTMLElement {
|
|
374
374
|
[HTMLConstructor] constructor();
|
|
375
375
|
|
|
376
|
-
[CEReactions] attribute DOMString dateTime;
|
|
376
|
+
[CEReactions, Reflect] attribute DOMString dateTime;
|
|
377
377
|
};
|
|
378
378
|
|
|
379
379
|
[Exposed=Window]
|
|
@@ -389,7 +389,7 @@ interface HTMLBRElement : HTMLElement {
|
|
|
389
389
|
};
|
|
390
390
|
|
|
391
391
|
interface mixin HTMLHyperlinkElementUtils {
|
|
392
|
-
[CEReactions] stringifier attribute USVString href;
|
|
392
|
+
[CEReactions, ReflectSetter] stringifier attribute USVString href;
|
|
393
393
|
readonly attribute USVString origin;
|
|
394
394
|
[CEReactions] attribute USVString protocol;
|
|
395
395
|
[CEReactions] attribute USVString username;
|
|
@@ -406,8 +406,8 @@ interface mixin HTMLHyperlinkElementUtils {
|
|
|
406
406
|
interface HTMLModElement : HTMLElement {
|
|
407
407
|
[HTMLConstructor] constructor();
|
|
408
408
|
|
|
409
|
-
[CEReactions] attribute USVString cite;
|
|
410
|
-
[CEReactions] attribute DOMString dateTime;
|
|
409
|
+
[CEReactions, ReflectURL] attribute USVString cite;
|
|
410
|
+
[CEReactions, Reflect] attribute DOMString dateTime;
|
|
411
411
|
};
|
|
412
412
|
|
|
413
413
|
[Exposed=Window]
|
|
@@ -419,13 +419,13 @@ interface HTMLPictureElement : HTMLElement {
|
|
|
419
419
|
interface HTMLSourceElement : HTMLElement {
|
|
420
420
|
[HTMLConstructor] constructor();
|
|
421
421
|
|
|
422
|
-
[CEReactions] attribute USVString src;
|
|
423
|
-
[CEReactions] attribute DOMString type;
|
|
424
|
-
[CEReactions] attribute USVString srcset;
|
|
425
|
-
[CEReactions] attribute DOMString sizes;
|
|
426
|
-
[CEReactions] attribute DOMString media;
|
|
427
|
-
[CEReactions] attribute unsigned long width;
|
|
428
|
-
[CEReactions] attribute unsigned long height;
|
|
422
|
+
[CEReactions, ReflectURL] attribute USVString src;
|
|
423
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
424
|
+
[CEReactions, Reflect] attribute USVString srcset;
|
|
425
|
+
[CEReactions, Reflect] attribute DOMString sizes;
|
|
426
|
+
[CEReactions, Reflect] attribute DOMString media;
|
|
427
|
+
[CEReactions, Reflect] attribute unsigned long width;
|
|
428
|
+
[CEReactions, Reflect] attribute unsigned long height;
|
|
429
429
|
};
|
|
430
430
|
|
|
431
431
|
[Exposed=Window,
|
|
@@ -433,15 +433,15 @@ interface HTMLSourceElement : HTMLElement {
|
|
|
433
433
|
interface HTMLImageElement : HTMLElement {
|
|
434
434
|
[HTMLConstructor] constructor();
|
|
435
435
|
|
|
436
|
-
[CEReactions] attribute DOMString alt;
|
|
437
|
-
[CEReactions] attribute USVString src;
|
|
438
|
-
[CEReactions] attribute USVString srcset;
|
|
439
|
-
[CEReactions] attribute DOMString sizes;
|
|
436
|
+
[CEReactions, Reflect] attribute DOMString alt;
|
|
437
|
+
[CEReactions, ReflectURL] attribute USVString src;
|
|
438
|
+
[CEReactions, Reflect] attribute USVString srcset;
|
|
439
|
+
[CEReactions, Reflect] attribute DOMString sizes;
|
|
440
440
|
[CEReactions] attribute DOMString? crossOrigin;
|
|
441
|
-
[CEReactions] attribute DOMString useMap;
|
|
442
|
-
[CEReactions] attribute boolean isMap;
|
|
443
|
-
[CEReactions] attribute unsigned long width;
|
|
444
|
-
[CEReactions] attribute unsigned long height;
|
|
441
|
+
[CEReactions, Reflect] attribute DOMString useMap;
|
|
442
|
+
[CEReactions, Reflect] attribute boolean isMap;
|
|
443
|
+
[CEReactions, ReflectSetter] attribute unsigned long width;
|
|
444
|
+
[CEReactions, ReflectSetter] attribute unsigned long height;
|
|
445
445
|
readonly attribute unsigned long naturalWidth;
|
|
446
446
|
readonly attribute unsigned long naturalHeight;
|
|
447
447
|
readonly attribute boolean complete;
|
|
@@ -460,14 +460,14 @@ interface HTMLImageElement : HTMLElement {
|
|
|
460
460
|
interface HTMLIFrameElement : HTMLElement {
|
|
461
461
|
[HTMLConstructor] constructor();
|
|
462
462
|
|
|
463
|
-
[CEReactions] attribute USVString src;
|
|
463
|
+
[CEReactions, ReflectURL] attribute USVString src;
|
|
464
464
|
[CEReactions] attribute (TrustedHTML or DOMString) srcdoc;
|
|
465
|
-
[CEReactions] attribute DOMString name;
|
|
466
|
-
[SameObject, PutForwards=value] readonly attribute DOMTokenList sandbox;
|
|
467
|
-
[CEReactions] attribute DOMString allow;
|
|
468
|
-
[CEReactions] attribute boolean allowFullscreen;
|
|
469
|
-
[CEReactions] attribute DOMString width;
|
|
470
|
-
[CEReactions] attribute DOMString height;
|
|
465
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
466
|
+
[SameObject, PutForwards=value, Reflect] readonly attribute DOMTokenList sandbox;
|
|
467
|
+
[CEReactions, Reflect] attribute DOMString allow;
|
|
468
|
+
[CEReactions, Reflect] attribute boolean allowFullscreen;
|
|
469
|
+
[CEReactions, Reflect] attribute DOMString width;
|
|
470
|
+
[CEReactions, Reflect] attribute DOMString height;
|
|
471
471
|
[CEReactions] attribute DOMString referrerPolicy;
|
|
472
472
|
[CEReactions] attribute DOMString loading;
|
|
473
473
|
readonly attribute Document? contentDocument;
|
|
@@ -481,10 +481,10 @@ interface HTMLIFrameElement : HTMLElement {
|
|
|
481
481
|
interface HTMLEmbedElement : HTMLElement {
|
|
482
482
|
[HTMLConstructor] constructor();
|
|
483
483
|
|
|
484
|
-
[CEReactions] attribute USVString src;
|
|
485
|
-
[CEReactions] attribute DOMString type;
|
|
486
|
-
[CEReactions] attribute DOMString width;
|
|
487
|
-
[CEReactions] attribute DOMString height;
|
|
484
|
+
[CEReactions, ReflectURL] attribute USVString src;
|
|
485
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
486
|
+
[CEReactions, Reflect] attribute DOMString width;
|
|
487
|
+
[CEReactions, Reflect] attribute DOMString height;
|
|
488
488
|
Document? getSVGDocument();
|
|
489
489
|
|
|
490
490
|
// also has obsolete members
|
|
@@ -494,12 +494,12 @@ interface HTMLEmbedElement : HTMLElement {
|
|
|
494
494
|
interface HTMLObjectElement : HTMLElement {
|
|
495
495
|
[HTMLConstructor] constructor();
|
|
496
496
|
|
|
497
|
-
[CEReactions] attribute USVString data;
|
|
498
|
-
[CEReactions] attribute DOMString type;
|
|
499
|
-
[CEReactions] attribute DOMString name;
|
|
497
|
+
[CEReactions, ReflectURL] attribute USVString data;
|
|
498
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
499
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
500
500
|
readonly attribute HTMLFormElement? form;
|
|
501
|
-
[CEReactions] attribute DOMString width;
|
|
502
|
-
[CEReactions] attribute DOMString height;
|
|
501
|
+
[CEReactions, Reflect] attribute DOMString width;
|
|
502
|
+
[CEReactions, Reflect] attribute DOMString height;
|
|
503
503
|
readonly attribute Document? contentDocument;
|
|
504
504
|
readonly attribute WindowProxy? contentWindow;
|
|
505
505
|
Document? getSVGDocument();
|
|
@@ -518,12 +518,12 @@ interface HTMLObjectElement : HTMLElement {
|
|
|
518
518
|
interface HTMLVideoElement : HTMLMediaElement {
|
|
519
519
|
[HTMLConstructor] constructor();
|
|
520
520
|
|
|
521
|
-
[CEReactions] attribute unsigned long width;
|
|
522
|
-
[CEReactions] attribute unsigned long height;
|
|
521
|
+
[CEReactions, Reflect] attribute unsigned long width;
|
|
522
|
+
[CEReactions, Reflect] attribute unsigned long height;
|
|
523
523
|
readonly attribute unsigned long videoWidth;
|
|
524
524
|
readonly attribute unsigned long videoHeight;
|
|
525
|
-
[CEReactions] attribute USVString poster;
|
|
526
|
-
[CEReactions] attribute boolean playsInline;
|
|
525
|
+
[CEReactions, ReflectURL] attribute USVString poster;
|
|
526
|
+
[CEReactions, Reflect] attribute boolean playsInline;
|
|
527
527
|
};
|
|
528
528
|
|
|
529
529
|
[Exposed=Window,
|
|
@@ -537,10 +537,10 @@ interface HTMLTrackElement : HTMLElement {
|
|
|
537
537
|
[HTMLConstructor] constructor();
|
|
538
538
|
|
|
539
539
|
[CEReactions] attribute DOMString kind;
|
|
540
|
-
[CEReactions] attribute USVString src;
|
|
541
|
-
[CEReactions] attribute DOMString srclang;
|
|
542
|
-
[CEReactions] attribute DOMString label;
|
|
543
|
-
[CEReactions] attribute boolean default;
|
|
540
|
+
[CEReactions, ReflectURL] attribute USVString src;
|
|
541
|
+
[CEReactions, Reflect] attribute DOMString srclang;
|
|
542
|
+
[CEReactions, Reflect] attribute DOMString label;
|
|
543
|
+
[CEReactions, Reflect] attribute boolean default;
|
|
544
544
|
|
|
545
545
|
const unsigned short NONE = 0;
|
|
546
546
|
const unsigned short LOADING = 1;
|
|
@@ -561,7 +561,7 @@ interface HTMLMediaElement : HTMLElement {
|
|
|
561
561
|
readonly attribute MediaError? error;
|
|
562
562
|
|
|
563
563
|
// network state
|
|
564
|
-
[CEReactions] attribute USVString src;
|
|
564
|
+
[CEReactions, ReflectURL] attribute USVString src;
|
|
565
565
|
attribute MediaProvider? srcObject;
|
|
566
566
|
readonly attribute USVString currentSrc;
|
|
567
567
|
[CEReactions] attribute DOMString? crossOrigin;
|
|
@@ -596,16 +596,16 @@ interface HTMLMediaElement : HTMLElement {
|
|
|
596
596
|
readonly attribute TimeRanges played;
|
|
597
597
|
readonly attribute TimeRanges seekable;
|
|
598
598
|
readonly attribute boolean ended;
|
|
599
|
-
[CEReactions] attribute boolean autoplay;
|
|
600
|
-
[CEReactions] attribute boolean loop;
|
|
599
|
+
[CEReactions, Reflect] attribute boolean autoplay;
|
|
600
|
+
[CEReactions, Reflect] attribute boolean loop;
|
|
601
601
|
Promise<undefined> play();
|
|
602
602
|
undefined pause();
|
|
603
603
|
|
|
604
604
|
// controls
|
|
605
|
-
[CEReactions] attribute boolean controls;
|
|
605
|
+
[CEReactions, Reflect] attribute boolean controls;
|
|
606
606
|
attribute double volume;
|
|
607
607
|
attribute boolean muted;
|
|
608
|
-
[CEReactions] attribute boolean defaultMuted;
|
|
608
|
+
[CEReactions, Reflect="muted"] attribute boolean defaultMuted;
|
|
609
609
|
|
|
610
610
|
// tracks
|
|
611
611
|
[SameObject] readonly attribute AudioTrackList audioTracks;
|
|
@@ -742,7 +742,7 @@ dictionary TrackEventInit : EventInit {
|
|
|
742
742
|
interface HTMLMapElement : HTMLElement {
|
|
743
743
|
[HTMLConstructor] constructor();
|
|
744
744
|
|
|
745
|
-
[CEReactions] attribute DOMString name;
|
|
745
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
746
746
|
[SameObject] readonly attribute HTMLCollection areas;
|
|
747
747
|
};
|
|
748
748
|
|
|
@@ -750,14 +750,14 @@ interface HTMLMapElement : HTMLElement {
|
|
|
750
750
|
interface HTMLAreaElement : HTMLElement {
|
|
751
751
|
[HTMLConstructor] constructor();
|
|
752
752
|
|
|
753
|
-
[CEReactions] attribute DOMString alt;
|
|
754
|
-
[CEReactions] attribute DOMString coords;
|
|
755
|
-
[CEReactions] attribute DOMString shape;
|
|
756
|
-
[CEReactions] attribute DOMString target;
|
|
757
|
-
[CEReactions] attribute DOMString download;
|
|
758
|
-
[CEReactions] attribute USVString ping;
|
|
759
|
-
[CEReactions] attribute DOMString rel;
|
|
760
|
-
[SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
|
|
753
|
+
[CEReactions, Reflect] attribute DOMString alt;
|
|
754
|
+
[CEReactions, Reflect] attribute DOMString coords;
|
|
755
|
+
[CEReactions, Reflect] attribute DOMString shape;
|
|
756
|
+
[CEReactions, Reflect] attribute DOMString target;
|
|
757
|
+
[CEReactions, Reflect] attribute DOMString download;
|
|
758
|
+
[CEReactions, Reflect] attribute USVString ping;
|
|
759
|
+
[CEReactions, Reflect] attribute DOMString rel;
|
|
760
|
+
[SameObject, PutForwards=value, Reflect="rel"] readonly attribute DOMTokenList relList;
|
|
761
761
|
[CEReactions] attribute DOMString referrerPolicy;
|
|
762
762
|
|
|
763
763
|
// also has obsolete members
|
|
@@ -801,7 +801,7 @@ interface HTMLTableCaptionElement : HTMLElement {
|
|
|
801
801
|
interface HTMLTableColElement : HTMLElement {
|
|
802
802
|
[HTMLConstructor] constructor();
|
|
803
803
|
|
|
804
|
-
[CEReactions] attribute unsigned long span;
|
|
804
|
+
[CEReactions, Reflect, ReflectDefault=1, ReflectRange=(1, 1000)] attribute unsigned long span;
|
|
805
805
|
|
|
806
806
|
// also has obsolete members
|
|
807
807
|
};
|
|
@@ -834,13 +834,13 @@ interface HTMLTableRowElement : HTMLElement {
|
|
|
834
834
|
interface HTMLTableCellElement : HTMLElement {
|
|
835
835
|
[HTMLConstructor] constructor();
|
|
836
836
|
|
|
837
|
-
[CEReactions] attribute unsigned long colSpan;
|
|
838
|
-
[CEReactions] attribute unsigned long rowSpan;
|
|
839
|
-
[CEReactions] attribute DOMString headers;
|
|
837
|
+
[CEReactions, Reflect, ReflectDefault=1, ReflectRange=(1, 1000)] attribute unsigned long colSpan;
|
|
838
|
+
[CEReactions, Reflect, ReflectDefault=1, ReflectRange=(0, 65534)] attribute unsigned long rowSpan;
|
|
839
|
+
[CEReactions, Reflect] attribute DOMString headers;
|
|
840
840
|
readonly attribute long cellIndex;
|
|
841
841
|
|
|
842
842
|
[CEReactions] attribute DOMString scope; // only conforming for th elements
|
|
843
|
-
[CEReactions] attribute DOMString abbr; // only conforming for th elements
|
|
843
|
+
[CEReactions, Reflect] attribute DOMString abbr; // only conforming for th elements
|
|
844
844
|
|
|
845
845
|
// also has obsolete members
|
|
846
846
|
};
|
|
@@ -851,17 +851,17 @@ interface HTMLTableCellElement : HTMLElement {
|
|
|
851
851
|
interface HTMLFormElement : HTMLElement {
|
|
852
852
|
[HTMLConstructor] constructor();
|
|
853
853
|
|
|
854
|
-
[CEReactions] attribute DOMString acceptCharset;
|
|
855
|
-
[CEReactions] attribute USVString action;
|
|
854
|
+
[CEReactions, Reflect="accept-charset"] attribute DOMString acceptCharset;
|
|
855
|
+
[CEReactions, ReflectSetter] attribute USVString action;
|
|
856
856
|
[CEReactions] attribute DOMString autocomplete;
|
|
857
857
|
[CEReactions] attribute DOMString enctype;
|
|
858
858
|
[CEReactions] attribute DOMString encoding;
|
|
859
859
|
[CEReactions] attribute DOMString method;
|
|
860
|
-
[CEReactions] attribute DOMString name;
|
|
861
|
-
[CEReactions] attribute boolean noValidate;
|
|
862
|
-
[CEReactions] attribute DOMString target;
|
|
863
|
-
[CEReactions] attribute DOMString rel;
|
|
864
|
-
[SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
|
|
860
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
861
|
+
[CEReactions, Reflect] attribute boolean noValidate;
|
|
862
|
+
[CEReactions, Reflect] attribute DOMString target;
|
|
863
|
+
[CEReactions, Reflect] attribute DOMString rel;
|
|
864
|
+
[SameObject, PutForwards=value, Reflect="rel"] readonly attribute DOMTokenList relList;
|
|
865
865
|
|
|
866
866
|
[SameObject] readonly attribute HTMLFormControlsCollection elements;
|
|
867
867
|
readonly attribute unsigned long length;
|
|
@@ -880,7 +880,7 @@ interface HTMLLabelElement : HTMLElement {
|
|
|
880
880
|
[HTMLConstructor] constructor();
|
|
881
881
|
|
|
882
882
|
readonly attribute HTMLFormElement? form;
|
|
883
|
-
[CEReactions] attribute DOMString htmlFor;
|
|
883
|
+
[CEReactions, Reflect="for"] attribute DOMString htmlFor;
|
|
884
884
|
readonly attribute HTMLElement? control;
|
|
885
885
|
};
|
|
886
886
|
|
|
@@ -888,44 +888,44 @@ interface HTMLLabelElement : HTMLElement {
|
|
|
888
888
|
interface HTMLInputElement : HTMLElement {
|
|
889
889
|
[HTMLConstructor] constructor();
|
|
890
890
|
|
|
891
|
-
[CEReactions] attribute DOMString accept;
|
|
892
|
-
[CEReactions] attribute boolean alpha;
|
|
893
|
-
[CEReactions] attribute DOMString alt;
|
|
894
|
-
[CEReactions] attribute DOMString autocomplete;
|
|
895
|
-
[CEReactions] attribute boolean defaultChecked;
|
|
891
|
+
[CEReactions, Reflect] attribute DOMString accept;
|
|
892
|
+
[CEReactions, Reflect] attribute boolean alpha;
|
|
893
|
+
[CEReactions, Reflect] attribute DOMString alt;
|
|
894
|
+
[CEReactions, ReflectSetter] attribute DOMString autocomplete;
|
|
895
|
+
[CEReactions, Reflect="checked"] attribute boolean defaultChecked;
|
|
896
896
|
attribute boolean checked;
|
|
897
897
|
[CEReactions] attribute DOMString colorSpace;
|
|
898
|
-
[CEReactions] attribute DOMString dirName;
|
|
899
|
-
[CEReactions] attribute boolean disabled;
|
|
898
|
+
[CEReactions, Reflect] attribute DOMString dirName;
|
|
899
|
+
[CEReactions, Reflect] attribute boolean disabled;
|
|
900
900
|
readonly attribute HTMLFormElement? form;
|
|
901
901
|
attribute FileList? files;
|
|
902
|
-
[CEReactions] attribute USVString formAction;
|
|
902
|
+
[CEReactions, ReflectSetter] attribute USVString formAction;
|
|
903
903
|
[CEReactions] attribute DOMString formEnctype;
|
|
904
904
|
[CEReactions] attribute DOMString formMethod;
|
|
905
|
-
[CEReactions] attribute boolean formNoValidate;
|
|
906
|
-
[CEReactions] attribute DOMString formTarget;
|
|
907
|
-
[CEReactions] attribute unsigned long height;
|
|
905
|
+
[CEReactions, Reflect] attribute boolean formNoValidate;
|
|
906
|
+
[CEReactions, Reflect] attribute DOMString formTarget;
|
|
907
|
+
[CEReactions, ReflectSetter] attribute unsigned long height;
|
|
908
908
|
attribute boolean indeterminate;
|
|
909
909
|
readonly attribute HTMLDataListElement? list;
|
|
910
|
-
[CEReactions] attribute DOMString max;
|
|
911
|
-
[CEReactions] attribute long maxLength;
|
|
912
|
-
[CEReactions] attribute DOMString min;
|
|
913
|
-
[CEReactions] attribute long minLength;
|
|
914
|
-
[CEReactions] attribute boolean multiple;
|
|
915
|
-
[CEReactions] attribute DOMString name;
|
|
916
|
-
[CEReactions] attribute DOMString pattern;
|
|
917
|
-
[CEReactions] attribute DOMString placeholder;
|
|
918
|
-
[CEReactions] attribute boolean readOnly;
|
|
919
|
-
[CEReactions] attribute boolean required;
|
|
920
|
-
[CEReactions] attribute unsigned long size;
|
|
921
|
-
[CEReactions] attribute USVString src;
|
|
922
|
-
[CEReactions] attribute DOMString step;
|
|
910
|
+
[CEReactions, Reflect] attribute DOMString max;
|
|
911
|
+
[CEReactions, ReflectNonNegative] attribute long maxLength;
|
|
912
|
+
[CEReactions, Reflect] attribute DOMString min;
|
|
913
|
+
[CEReactions, ReflectNonNegative] attribute long minLength;
|
|
914
|
+
[CEReactions, Reflect] attribute boolean multiple;
|
|
915
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
916
|
+
[CEReactions, Reflect] attribute DOMString pattern;
|
|
917
|
+
[CEReactions, Reflect] attribute DOMString placeholder;
|
|
918
|
+
[CEReactions, Reflect] attribute boolean readOnly;
|
|
919
|
+
[CEReactions, Reflect] attribute boolean required;
|
|
920
|
+
[CEReactions, Reflect] attribute unsigned long size;
|
|
921
|
+
[CEReactions, ReflectURL] attribute USVString src;
|
|
922
|
+
[CEReactions, Reflect] attribute DOMString step;
|
|
923
923
|
[CEReactions] attribute DOMString type;
|
|
924
|
-
[CEReactions] attribute DOMString defaultValue;
|
|
924
|
+
[CEReactions, Reflect="value"] attribute DOMString defaultValue;
|
|
925
925
|
[CEReactions] attribute [LegacyNullToEmptyString] DOMString value;
|
|
926
926
|
attribute object? valueAsDate;
|
|
927
927
|
attribute unrestricted double valueAsNumber;
|
|
928
|
-
[CEReactions] attribute unsigned long width;
|
|
928
|
+
[CEReactions, ReflectSetter] attribute unsigned long width;
|
|
929
929
|
|
|
930
930
|
undefined stepUp(optional long n = 1);
|
|
931
931
|
undefined stepDown(optional long n = 1);
|
|
@@ -951,24 +951,24 @@ interface HTMLInputElement : HTMLElement {
|
|
|
951
951
|
|
|
952
952
|
// also has obsolete members
|
|
953
953
|
};
|
|
954
|
-
HTMLInputElement includes
|
|
954
|
+
HTMLInputElement includes PopoverTargetAttributes;
|
|
955
955
|
|
|
956
956
|
[Exposed=Window]
|
|
957
957
|
interface HTMLButtonElement : HTMLElement {
|
|
958
958
|
[HTMLConstructor] constructor();
|
|
959
959
|
|
|
960
|
-
[CEReactions] attribute DOMString command;
|
|
961
|
-
[CEReactions] attribute Element? commandForElement;
|
|
962
|
-
[CEReactions] attribute boolean disabled;
|
|
960
|
+
[CEReactions, ReflectSetter] attribute DOMString command;
|
|
961
|
+
[CEReactions, Reflect] attribute Element? commandForElement;
|
|
962
|
+
[CEReactions, Reflect] attribute boolean disabled;
|
|
963
963
|
readonly attribute HTMLFormElement? form;
|
|
964
|
-
[CEReactions] attribute USVString formAction;
|
|
964
|
+
[CEReactions, ReflectSetter] attribute USVString formAction;
|
|
965
965
|
[CEReactions] attribute DOMString formEnctype;
|
|
966
966
|
[CEReactions] attribute DOMString formMethod;
|
|
967
|
-
[CEReactions] attribute boolean formNoValidate;
|
|
968
|
-
[CEReactions] attribute DOMString formTarget;
|
|
969
|
-
[CEReactions] attribute DOMString name;
|
|
970
|
-
[CEReactions] attribute DOMString type;
|
|
971
|
-
[CEReactions] attribute DOMString value;
|
|
967
|
+
[CEReactions, Reflect] attribute boolean formNoValidate;
|
|
968
|
+
[CEReactions, Reflect] attribute DOMString formTarget;
|
|
969
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
970
|
+
[CEReactions, ReflectSetter] attribute DOMString type;
|
|
971
|
+
[CEReactions, Reflect] attribute DOMString value;
|
|
972
972
|
|
|
973
973
|
readonly attribute boolean willValidate;
|
|
974
974
|
readonly attribute ValidityState validity;
|
|
@@ -979,19 +979,19 @@ interface HTMLButtonElement : HTMLElement {
|
|
|
979
979
|
|
|
980
980
|
readonly attribute NodeList labels;
|
|
981
981
|
};
|
|
982
|
-
HTMLButtonElement includes
|
|
982
|
+
HTMLButtonElement includes PopoverTargetAttributes;
|
|
983
983
|
|
|
984
984
|
[Exposed=Window]
|
|
985
985
|
interface HTMLSelectElement : HTMLElement {
|
|
986
986
|
[HTMLConstructor] constructor();
|
|
987
987
|
|
|
988
|
-
[CEReactions] attribute DOMString autocomplete;
|
|
989
|
-
[CEReactions] attribute boolean disabled;
|
|
988
|
+
[CEReactions, ReflectSetter] attribute DOMString autocomplete;
|
|
989
|
+
[CEReactions, Reflect] attribute boolean disabled;
|
|
990
990
|
readonly attribute HTMLFormElement? form;
|
|
991
|
-
[CEReactions] attribute boolean multiple;
|
|
992
|
-
[CEReactions] attribute DOMString name;
|
|
993
|
-
[CEReactions] attribute boolean required;
|
|
994
|
-
[CEReactions] attribute unsigned long size;
|
|
991
|
+
[CEReactions, Reflect] attribute boolean multiple;
|
|
992
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
993
|
+
[CEReactions, Reflect] attribute boolean required;
|
|
994
|
+
[CEReactions, Reflect, ReflectDefault=0] attribute unsigned long size;
|
|
995
995
|
|
|
996
996
|
readonly attribute DOMString type;
|
|
997
997
|
|
|
@@ -1031,8 +1031,8 @@ interface HTMLDataListElement : HTMLElement {
|
|
|
1031
1031
|
interface HTMLOptGroupElement : HTMLElement {
|
|
1032
1032
|
[HTMLConstructor] constructor();
|
|
1033
1033
|
|
|
1034
|
-
[CEReactions] attribute boolean disabled;
|
|
1035
|
-
[CEReactions] attribute DOMString label;
|
|
1034
|
+
[CEReactions, Reflect] attribute boolean disabled;
|
|
1035
|
+
[CEReactions, Reflect] attribute DOMString label;
|
|
1036
1036
|
};
|
|
1037
1037
|
|
|
1038
1038
|
[Exposed=Window,
|
|
@@ -1040,12 +1040,12 @@ interface HTMLOptGroupElement : HTMLElement {
|
|
|
1040
1040
|
interface HTMLOptionElement : HTMLElement {
|
|
1041
1041
|
[HTMLConstructor] constructor();
|
|
1042
1042
|
|
|
1043
|
-
[CEReactions] attribute boolean disabled;
|
|
1043
|
+
[CEReactions, Reflect] attribute boolean disabled;
|
|
1044
1044
|
readonly attribute HTMLFormElement? form;
|
|
1045
|
-
[CEReactions] attribute DOMString label;
|
|
1046
|
-
[CEReactions] attribute boolean defaultSelected;
|
|
1045
|
+
[CEReactions, ReflectSetter] attribute DOMString label;
|
|
1046
|
+
[CEReactions, Reflect="selected"] attribute boolean defaultSelected;
|
|
1047
1047
|
attribute boolean selected;
|
|
1048
|
-
[CEReactions] attribute DOMString value;
|
|
1048
|
+
[CEReactions, ReflectSetter] attribute DOMString value;
|
|
1049
1049
|
|
|
1050
1050
|
[CEReactions] attribute DOMString text;
|
|
1051
1051
|
readonly attribute long index;
|
|
@@ -1055,19 +1055,19 @@ interface HTMLOptionElement : HTMLElement {
|
|
|
1055
1055
|
interface HTMLTextAreaElement : HTMLElement {
|
|
1056
1056
|
[HTMLConstructor] constructor();
|
|
1057
1057
|
|
|
1058
|
-
[CEReactions] attribute DOMString autocomplete;
|
|
1059
|
-
[CEReactions] attribute unsigned long cols;
|
|
1060
|
-
[CEReactions] attribute DOMString dirName;
|
|
1061
|
-
[CEReactions] attribute boolean disabled;
|
|
1058
|
+
[CEReactions, ReflectSetter] attribute DOMString autocomplete;
|
|
1059
|
+
[CEReactions, ReflectPositiveWithFallback, ReflectDefault=20] attribute unsigned long cols;
|
|
1060
|
+
[CEReactions, Reflect] attribute DOMString dirName;
|
|
1061
|
+
[CEReactions, Reflect] attribute boolean disabled;
|
|
1062
1062
|
readonly attribute HTMLFormElement? form;
|
|
1063
|
-
[CEReactions] attribute long maxLength;
|
|
1064
|
-
[CEReactions] attribute long minLength;
|
|
1065
|
-
[CEReactions] attribute DOMString name;
|
|
1066
|
-
[CEReactions] attribute DOMString placeholder;
|
|
1067
|
-
[CEReactions] attribute boolean readOnly;
|
|
1068
|
-
[CEReactions] attribute boolean required;
|
|
1069
|
-
[CEReactions] attribute unsigned long rows;
|
|
1070
|
-
[CEReactions] attribute DOMString wrap;
|
|
1063
|
+
[CEReactions, ReflectNonNegative] attribute long maxLength;
|
|
1064
|
+
[CEReactions, ReflectNonNegative] attribute long minLength;
|
|
1065
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
1066
|
+
[CEReactions, Reflect] attribute DOMString placeholder;
|
|
1067
|
+
[CEReactions, Reflect] attribute boolean readOnly;
|
|
1068
|
+
[CEReactions, Reflect] attribute boolean required;
|
|
1069
|
+
[CEReactions, ReflectPositiveWithFallback, ReflectDefault=2] attribute unsigned long rows;
|
|
1070
|
+
[CEReactions, Reflect] attribute DOMString wrap;
|
|
1071
1071
|
|
|
1072
1072
|
readonly attribute DOMString type;
|
|
1073
1073
|
[CEReactions] attribute DOMString defaultValue;
|
|
@@ -1096,9 +1096,9 @@ interface HTMLTextAreaElement : HTMLElement {
|
|
|
1096
1096
|
interface HTMLOutputElement : HTMLElement {
|
|
1097
1097
|
[HTMLConstructor] constructor();
|
|
1098
1098
|
|
|
1099
|
-
[SameObject, PutForwards=value] readonly attribute DOMTokenList htmlFor;
|
|
1099
|
+
[SameObject, PutForwards=value, Reflect="for"] readonly attribute DOMTokenList htmlFor;
|
|
1100
1100
|
readonly attribute HTMLFormElement? form;
|
|
1101
|
-
[CEReactions] attribute DOMString name;
|
|
1101
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
1102
1102
|
|
|
1103
1103
|
readonly attribute DOMString type;
|
|
1104
1104
|
[CEReactions] attribute DOMString defaultValue;
|
|
@@ -1118,8 +1118,8 @@ interface HTMLOutputElement : HTMLElement {
|
|
|
1118
1118
|
interface HTMLProgressElement : HTMLElement {
|
|
1119
1119
|
[HTMLConstructor] constructor();
|
|
1120
1120
|
|
|
1121
|
-
[CEReactions] attribute double value;
|
|
1122
|
-
[CEReactions] attribute double max;
|
|
1121
|
+
[CEReactions, ReflectSetter] attribute double value;
|
|
1122
|
+
[CEReactions, ReflectPositive, ReflectDefault=1.0] attribute double max;
|
|
1123
1123
|
readonly attribute double position;
|
|
1124
1124
|
readonly attribute NodeList labels;
|
|
1125
1125
|
};
|
|
@@ -1128,12 +1128,12 @@ interface HTMLProgressElement : HTMLElement {
|
|
|
1128
1128
|
interface HTMLMeterElement : HTMLElement {
|
|
1129
1129
|
[HTMLConstructor] constructor();
|
|
1130
1130
|
|
|
1131
|
-
[CEReactions] attribute double value;
|
|
1132
|
-
[CEReactions] attribute double min;
|
|
1133
|
-
[CEReactions] attribute double max;
|
|
1134
|
-
[CEReactions] attribute double low;
|
|
1135
|
-
[CEReactions] attribute double high;
|
|
1136
|
-
[CEReactions] attribute double optimum;
|
|
1131
|
+
[CEReactions, ReflectSetter] attribute double value;
|
|
1132
|
+
[CEReactions, ReflectSetter] attribute double min;
|
|
1133
|
+
[CEReactions, ReflectSetter] attribute double max;
|
|
1134
|
+
[CEReactions, ReflectSetter] attribute double low;
|
|
1135
|
+
[CEReactions, ReflectSetter] attribute double high;
|
|
1136
|
+
[CEReactions, ReflectSetter] attribute double optimum;
|
|
1137
1137
|
readonly attribute NodeList labels;
|
|
1138
1138
|
};
|
|
1139
1139
|
|
|
@@ -1141,9 +1141,9 @@ interface HTMLMeterElement : HTMLElement {
|
|
|
1141
1141
|
interface HTMLFieldSetElement : HTMLElement {
|
|
1142
1142
|
[HTMLConstructor] constructor();
|
|
1143
1143
|
|
|
1144
|
-
[CEReactions] attribute boolean disabled;
|
|
1144
|
+
[CEReactions, Reflect] attribute boolean disabled;
|
|
1145
1145
|
readonly attribute HTMLFormElement? form;
|
|
1146
|
-
[CEReactions] attribute DOMString name;
|
|
1146
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
1147
1147
|
|
|
1148
1148
|
readonly attribute DOMString type;
|
|
1149
1149
|
|
|
@@ -1219,17 +1219,17 @@ dictionary FormDataEventInit : EventInit {
|
|
|
1219
1219
|
interface HTMLDetailsElement : HTMLElement {
|
|
1220
1220
|
[HTMLConstructor] constructor();
|
|
1221
1221
|
|
|
1222
|
-
[CEReactions] attribute DOMString name;
|
|
1223
|
-
[CEReactions] attribute boolean open;
|
|
1222
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
1223
|
+
[CEReactions, Reflect] attribute boolean open;
|
|
1224
1224
|
};
|
|
1225
1225
|
|
|
1226
1226
|
[Exposed=Window]
|
|
1227
1227
|
interface HTMLDialogElement : HTMLElement {
|
|
1228
1228
|
[HTMLConstructor] constructor();
|
|
1229
1229
|
|
|
1230
|
-
[CEReactions] attribute boolean open;
|
|
1230
|
+
[CEReactions, Reflect] attribute boolean open;
|
|
1231
1231
|
attribute DOMString returnValue;
|
|
1232
|
-
[CEReactions] attribute DOMString closedBy;
|
|
1232
|
+
[CEReactions, ReflectSetter] attribute DOMString closedBy;
|
|
1233
1233
|
[CEReactions] undefined show();
|
|
1234
1234
|
[CEReactions] undefined showModal();
|
|
1235
1235
|
[CEReactions] undefined close(optional DOMString returnValue);
|
|
@@ -1240,15 +1240,15 @@ interface HTMLDialogElement : HTMLElement {
|
|
|
1240
1240
|
interface HTMLScriptElement : HTMLElement {
|
|
1241
1241
|
[HTMLConstructor] constructor();
|
|
1242
1242
|
|
|
1243
|
-
[CEReactions] attribute DOMString type;
|
|
1244
|
-
[CEReactions] attribute USVString src;
|
|
1245
|
-
[CEReactions] attribute boolean noModule;
|
|
1243
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
1244
|
+
[CEReactions, ReflectURL] attribute USVString src;
|
|
1245
|
+
[CEReactions, Reflect] attribute boolean noModule;
|
|
1246
1246
|
[CEReactions] attribute boolean async;
|
|
1247
|
-
[CEReactions] attribute boolean defer;
|
|
1248
|
-
[SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;
|
|
1247
|
+
[CEReactions, Reflect] attribute boolean defer;
|
|
1248
|
+
[SameObject, PutForwards=value, Reflect] readonly attribute DOMTokenList blocking;
|
|
1249
1249
|
[CEReactions] attribute DOMString? crossOrigin;
|
|
1250
1250
|
[CEReactions] attribute DOMString referrerPolicy;
|
|
1251
|
-
[CEReactions] attribute DOMString integrity;
|
|
1251
|
+
[CEReactions, Reflect] attribute DOMString integrity;
|
|
1252
1252
|
[CEReactions] attribute DOMString fetchPriority;
|
|
1253
1253
|
|
|
1254
1254
|
[CEReactions] attribute DOMString text;
|
|
@@ -1264,17 +1264,17 @@ interface HTMLTemplateElement : HTMLElement {
|
|
|
1264
1264
|
|
|
1265
1265
|
readonly attribute DocumentFragment content;
|
|
1266
1266
|
[CEReactions] attribute DOMString shadowRootMode;
|
|
1267
|
-
[CEReactions] attribute boolean shadowRootDelegatesFocus;
|
|
1268
|
-
[CEReactions] attribute boolean shadowRootClonable;
|
|
1269
|
-
[CEReactions] attribute boolean shadowRootSerializable;
|
|
1270
|
-
[CEReactions] attribute DOMString shadowRootCustomElementRegistry;
|
|
1267
|
+
[CEReactions, Reflect] attribute boolean shadowRootDelegatesFocus;
|
|
1268
|
+
[CEReactions, Reflect] attribute boolean shadowRootClonable;
|
|
1269
|
+
[CEReactions, Reflect] attribute boolean shadowRootSerializable;
|
|
1270
|
+
[CEReactions, Reflect] attribute DOMString shadowRootCustomElementRegistry;
|
|
1271
1271
|
};
|
|
1272
1272
|
|
|
1273
1273
|
[Exposed=Window]
|
|
1274
1274
|
interface HTMLSlotElement : HTMLElement {
|
|
1275
1275
|
[HTMLConstructor] constructor();
|
|
1276
1276
|
|
|
1277
|
-
[CEReactions] attribute DOMString name;
|
|
1277
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
1278
1278
|
sequence<Node> assignedNodes(optional AssignedNodesOptions options = {});
|
|
1279
1279
|
sequence<Element> assignedElements(optional AssignedNodesOptions options = {});
|
|
1280
1280
|
undefined assign((Element or Text)... nodes);
|
|
@@ -1798,8 +1798,8 @@ dictionary DragEventInit : MouseEventInit {
|
|
|
1798
1798
|
DataTransfer? dataTransfer = null;
|
|
1799
1799
|
};
|
|
1800
1800
|
|
|
1801
|
-
interface mixin
|
|
1802
|
-
[CEReactions] attribute Element? popoverTargetElement;
|
|
1801
|
+
interface mixin PopoverTargetAttributes {
|
|
1802
|
+
[CEReactions, Reflect] attribute Element? popoverTargetElement;
|
|
1803
1803
|
[CEReactions] attribute DOMString popoverTargetAction;
|
|
1804
1804
|
};
|
|
1805
1805
|
|
|
@@ -2656,9 +2656,9 @@ interface Worker : EventTarget {
|
|
|
2656
2656
|
};
|
|
2657
2657
|
|
|
2658
2658
|
dictionary WorkerOptions {
|
|
2659
|
+
DOMString name = "";
|
|
2659
2660
|
WorkerType type = "classic";
|
|
2660
2661
|
RequestCredentials credentials = "same-origin"; // credentials is only used if type is "module"
|
|
2661
|
-
DOMString name = "";
|
|
2662
2662
|
};
|
|
2663
2663
|
|
|
2664
2664
|
enum WorkerType { "classic", "module" };
|
|
@@ -2755,17 +2755,17 @@ dictionary StorageEventInit : EventInit {
|
|
|
2755
2755
|
interface HTMLMarqueeElement : HTMLElement {
|
|
2756
2756
|
[HTMLConstructor] constructor();
|
|
2757
2757
|
|
|
2758
|
-
[CEReactions] attribute DOMString behavior;
|
|
2759
|
-
[CEReactions] attribute DOMString bgColor;
|
|
2760
|
-
[CEReactions] attribute DOMString direction;
|
|
2761
|
-
[CEReactions] attribute DOMString height;
|
|
2762
|
-
[CEReactions] attribute unsigned long hspace;
|
|
2758
|
+
[CEReactions, Reflect] attribute DOMString behavior;
|
|
2759
|
+
[CEReactions, Reflect] attribute DOMString bgColor;
|
|
2760
|
+
[CEReactions, Reflect] attribute DOMString direction;
|
|
2761
|
+
[CEReactions, Reflect] attribute DOMString height;
|
|
2762
|
+
[CEReactions, Reflect] attribute unsigned long hspace;
|
|
2763
2763
|
[CEReactions] attribute long loop;
|
|
2764
|
-
[CEReactions] attribute unsigned long scrollAmount;
|
|
2765
|
-
[CEReactions] attribute unsigned long scrollDelay;
|
|
2766
|
-
[CEReactions] attribute boolean trueSpeed;
|
|
2767
|
-
[CEReactions] attribute unsigned long vspace;
|
|
2768
|
-
[CEReactions] attribute DOMString width;
|
|
2764
|
+
[CEReactions, Reflect, ReflectDefault=6] attribute unsigned long scrollAmount;
|
|
2765
|
+
[CEReactions, Reflect, ReflectDefault=85] attribute unsigned long scrollDelay;
|
|
2766
|
+
[CEReactions, Reflect] attribute boolean trueSpeed;
|
|
2767
|
+
[CEReactions, Reflect] attribute unsigned long vspace;
|
|
2768
|
+
[CEReactions, Reflect] attribute DOMString width;
|
|
2769
2769
|
|
|
2770
2770
|
undefined start();
|
|
2771
2771
|
undefined stop();
|
|
@@ -2775,8 +2775,8 @@ interface HTMLMarqueeElement : HTMLElement {
|
|
|
2775
2775
|
interface HTMLFrameSetElement : HTMLElement {
|
|
2776
2776
|
[HTMLConstructor] constructor();
|
|
2777
2777
|
|
|
2778
|
-
[CEReactions] attribute DOMString cols;
|
|
2779
|
-
[CEReactions] attribute DOMString rows;
|
|
2778
|
+
[CEReactions, Reflect] attribute DOMString cols;
|
|
2779
|
+
[CEReactions, Reflect] attribute DOMString rows;
|
|
2780
2780
|
};
|
|
2781
2781
|
HTMLFrameSetElement includes WindowEventHandlers;
|
|
2782
2782
|
|
|
@@ -2784,242 +2784,242 @@ HTMLFrameSetElement includes WindowEventHandlers;
|
|
|
2784
2784
|
interface HTMLFrameElement : HTMLElement {
|
|
2785
2785
|
[HTMLConstructor] constructor();
|
|
2786
2786
|
|
|
2787
|
-
[CEReactions] attribute DOMString name;
|
|
2788
|
-
[CEReactions] attribute DOMString scrolling;
|
|
2789
|
-
[CEReactions] attribute USVString src;
|
|
2790
|
-
[CEReactions] attribute DOMString frameBorder;
|
|
2791
|
-
[CEReactions] attribute USVString longDesc;
|
|
2792
|
-
[CEReactions] attribute boolean noResize;
|
|
2787
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
2788
|
+
[CEReactions, Reflect] attribute DOMString scrolling;
|
|
2789
|
+
[CEReactions, ReflectURL] attribute USVString src;
|
|
2790
|
+
[CEReactions, Reflect] attribute DOMString frameBorder;
|
|
2791
|
+
[CEReactions, ReflectURL] attribute USVString longDesc;
|
|
2792
|
+
[CEReactions, Reflect] attribute boolean noResize;
|
|
2793
2793
|
readonly attribute Document? contentDocument;
|
|
2794
2794
|
readonly attribute WindowProxy? contentWindow;
|
|
2795
2795
|
|
|
2796
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString marginHeight;
|
|
2797
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString marginWidth;
|
|
2796
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString marginHeight;
|
|
2797
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString marginWidth;
|
|
2798
2798
|
};
|
|
2799
2799
|
|
|
2800
2800
|
partial interface HTMLAnchorElement {
|
|
2801
|
-
[CEReactions] attribute DOMString coords;
|
|
2802
|
-
[CEReactions] attribute DOMString charset;
|
|
2803
|
-
[CEReactions] attribute DOMString name;
|
|
2804
|
-
[CEReactions] attribute DOMString rev;
|
|
2805
|
-
[CEReactions] attribute DOMString shape;
|
|
2801
|
+
[CEReactions, Reflect] attribute DOMString coords;
|
|
2802
|
+
[CEReactions, Reflect] attribute DOMString charset;
|
|
2803
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
2804
|
+
[CEReactions, Reflect] attribute DOMString rev;
|
|
2805
|
+
[CEReactions, Reflect] attribute DOMString shape;
|
|
2806
2806
|
};
|
|
2807
2807
|
|
|
2808
2808
|
partial interface HTMLAreaElement {
|
|
2809
|
-
[CEReactions] attribute boolean noHref;
|
|
2809
|
+
[CEReactions, Reflect] attribute boolean noHref;
|
|
2810
2810
|
};
|
|
2811
2811
|
|
|
2812
2812
|
partial interface HTMLBodyElement {
|
|
2813
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString text;
|
|
2814
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString link;
|
|
2815
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString vLink;
|
|
2816
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString aLink;
|
|
2817
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString bgColor;
|
|
2818
|
-
[CEReactions] attribute DOMString background;
|
|
2813
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString text;
|
|
2814
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString link;
|
|
2815
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString vLink;
|
|
2816
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString aLink;
|
|
2817
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString bgColor;
|
|
2818
|
+
[CEReactions, Reflect] attribute DOMString background;
|
|
2819
2819
|
};
|
|
2820
2820
|
|
|
2821
2821
|
partial interface HTMLBRElement {
|
|
2822
|
-
[CEReactions] attribute DOMString clear;
|
|
2822
|
+
[CEReactions, Reflect] attribute DOMString clear;
|
|
2823
2823
|
};
|
|
2824
2824
|
|
|
2825
2825
|
partial interface HTMLTableCaptionElement {
|
|
2826
|
-
[CEReactions] attribute DOMString align;
|
|
2826
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2827
2827
|
};
|
|
2828
2828
|
|
|
2829
2829
|
partial interface HTMLTableColElement {
|
|
2830
|
-
[CEReactions] attribute DOMString align;
|
|
2831
|
-
[CEReactions] attribute DOMString ch;
|
|
2832
|
-
[CEReactions] attribute DOMString chOff;
|
|
2833
|
-
[CEReactions] attribute DOMString vAlign;
|
|
2834
|
-
[CEReactions] attribute DOMString width;
|
|
2830
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2831
|
+
[CEReactions, Reflect="char"] attribute DOMString ch;
|
|
2832
|
+
[CEReactions, Reflect="charoff"] attribute DOMString chOff;
|
|
2833
|
+
[CEReactions, Reflect] attribute DOMString vAlign;
|
|
2834
|
+
[CEReactions, Reflect] attribute DOMString width;
|
|
2835
2835
|
};
|
|
2836
2836
|
|
|
2837
2837
|
[Exposed=Window]
|
|
2838
2838
|
interface HTMLDirectoryElement : HTMLElement {
|
|
2839
2839
|
[HTMLConstructor] constructor();
|
|
2840
2840
|
|
|
2841
|
-
[CEReactions] attribute boolean compact;
|
|
2841
|
+
[CEReactions, Reflect] attribute boolean compact;
|
|
2842
2842
|
};
|
|
2843
2843
|
|
|
2844
2844
|
partial interface HTMLDivElement {
|
|
2845
|
-
[CEReactions] attribute DOMString align;
|
|
2845
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2846
2846
|
};
|
|
2847
2847
|
|
|
2848
2848
|
partial interface HTMLDListElement {
|
|
2849
|
-
[CEReactions] attribute boolean compact;
|
|
2849
|
+
[CEReactions, Reflect] attribute boolean compact;
|
|
2850
2850
|
};
|
|
2851
2851
|
|
|
2852
2852
|
partial interface HTMLEmbedElement {
|
|
2853
|
-
[CEReactions] attribute DOMString align;
|
|
2854
|
-
[CEReactions] attribute DOMString name;
|
|
2853
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2854
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
2855
2855
|
};
|
|
2856
2856
|
|
|
2857
2857
|
[Exposed=Window]
|
|
2858
2858
|
interface HTMLFontElement : HTMLElement {
|
|
2859
2859
|
[HTMLConstructor] constructor();
|
|
2860
2860
|
|
|
2861
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString color;
|
|
2862
|
-
[CEReactions] attribute DOMString face;
|
|
2863
|
-
[CEReactions] attribute DOMString size;
|
|
2861
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString color;
|
|
2862
|
+
[CEReactions, Reflect] attribute DOMString face;
|
|
2863
|
+
[CEReactions, Reflect] attribute DOMString size;
|
|
2864
2864
|
};
|
|
2865
2865
|
|
|
2866
2866
|
partial interface HTMLHeadingElement {
|
|
2867
|
-
[CEReactions] attribute DOMString align;
|
|
2867
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2868
2868
|
};
|
|
2869
2869
|
|
|
2870
2870
|
partial interface HTMLHRElement {
|
|
2871
|
-
[CEReactions] attribute DOMString align;
|
|
2872
|
-
[CEReactions] attribute DOMString color;
|
|
2873
|
-
[CEReactions] attribute boolean noShade;
|
|
2874
|
-
[CEReactions] attribute DOMString size;
|
|
2875
|
-
[CEReactions] attribute DOMString width;
|
|
2871
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2872
|
+
[CEReactions, Reflect] attribute DOMString color;
|
|
2873
|
+
[CEReactions, Reflect] attribute boolean noShade;
|
|
2874
|
+
[CEReactions, Reflect] attribute DOMString size;
|
|
2875
|
+
[CEReactions, Reflect] attribute DOMString width;
|
|
2876
2876
|
};
|
|
2877
2877
|
|
|
2878
2878
|
partial interface HTMLHtmlElement {
|
|
2879
|
-
[CEReactions] attribute DOMString version;
|
|
2879
|
+
[CEReactions, Reflect] attribute DOMString version;
|
|
2880
2880
|
};
|
|
2881
2881
|
|
|
2882
2882
|
partial interface HTMLIFrameElement {
|
|
2883
|
-
[CEReactions] attribute DOMString align;
|
|
2884
|
-
[CEReactions] attribute DOMString scrolling;
|
|
2885
|
-
[CEReactions] attribute DOMString frameBorder;
|
|
2886
|
-
[CEReactions] attribute USVString longDesc;
|
|
2883
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2884
|
+
[CEReactions, Reflect] attribute DOMString scrolling;
|
|
2885
|
+
[CEReactions, Reflect] attribute DOMString frameBorder;
|
|
2886
|
+
[CEReactions, ReflectURL] attribute USVString longDesc;
|
|
2887
2887
|
|
|
2888
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString marginHeight;
|
|
2889
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString marginWidth;
|
|
2888
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString marginHeight;
|
|
2889
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString marginWidth;
|
|
2890
2890
|
};
|
|
2891
2891
|
|
|
2892
2892
|
partial interface HTMLImageElement {
|
|
2893
|
-
[CEReactions] attribute DOMString name;
|
|
2894
|
-
[CEReactions] attribute USVString lowsrc;
|
|
2895
|
-
[CEReactions] attribute DOMString align;
|
|
2896
|
-
[CEReactions] attribute unsigned long hspace;
|
|
2897
|
-
[CEReactions] attribute unsigned long vspace;
|
|
2898
|
-
[CEReactions] attribute USVString longDesc;
|
|
2893
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
2894
|
+
[CEReactions, ReflectURL] attribute USVString lowsrc;
|
|
2895
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2896
|
+
[CEReactions, Reflect] attribute unsigned long hspace;
|
|
2897
|
+
[CEReactions, Reflect] attribute unsigned long vspace;
|
|
2898
|
+
[CEReactions, ReflectURL] attribute USVString longDesc;
|
|
2899
2899
|
|
|
2900
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString border;
|
|
2900
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString border;
|
|
2901
2901
|
};
|
|
2902
2902
|
|
|
2903
2903
|
partial interface HTMLInputElement {
|
|
2904
|
-
[CEReactions] attribute DOMString align;
|
|
2905
|
-
[CEReactions] attribute DOMString useMap;
|
|
2904
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2905
|
+
[CEReactions, Reflect] attribute DOMString useMap;
|
|
2906
2906
|
};
|
|
2907
2907
|
|
|
2908
2908
|
partial interface HTMLLegendElement {
|
|
2909
|
-
[CEReactions] attribute DOMString align;
|
|
2909
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2910
2910
|
};
|
|
2911
2911
|
|
|
2912
2912
|
partial interface HTMLLIElement {
|
|
2913
|
-
[CEReactions] attribute DOMString type;
|
|
2913
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
2914
2914
|
};
|
|
2915
2915
|
|
|
2916
2916
|
partial interface HTMLLinkElement {
|
|
2917
|
-
[CEReactions] attribute DOMString charset;
|
|
2918
|
-
[CEReactions] attribute DOMString rev;
|
|
2919
|
-
[CEReactions] attribute DOMString target;
|
|
2917
|
+
[CEReactions, Reflect] attribute DOMString charset;
|
|
2918
|
+
[CEReactions, Reflect] attribute DOMString rev;
|
|
2919
|
+
[CEReactions, Reflect] attribute DOMString target;
|
|
2920
2920
|
};
|
|
2921
2921
|
|
|
2922
2922
|
partial interface HTMLMenuElement {
|
|
2923
|
-
[CEReactions] attribute boolean compact;
|
|
2923
|
+
[CEReactions, Reflect] attribute boolean compact;
|
|
2924
2924
|
};
|
|
2925
2925
|
|
|
2926
2926
|
partial interface HTMLMetaElement {
|
|
2927
|
-
[CEReactions] attribute DOMString scheme;
|
|
2927
|
+
[CEReactions, Reflect] attribute DOMString scheme;
|
|
2928
2928
|
};
|
|
2929
2929
|
|
|
2930
2930
|
partial interface HTMLObjectElement {
|
|
2931
|
-
[CEReactions] attribute DOMString align;
|
|
2932
|
-
[CEReactions] attribute DOMString archive;
|
|
2933
|
-
[CEReactions] attribute DOMString code;
|
|
2934
|
-
[CEReactions] attribute boolean declare;
|
|
2935
|
-
[CEReactions] attribute unsigned long hspace;
|
|
2936
|
-
[CEReactions] attribute DOMString standby;
|
|
2937
|
-
[CEReactions] attribute unsigned long vspace;
|
|
2938
|
-
[CEReactions] attribute DOMString codeBase;
|
|
2939
|
-
[CEReactions] attribute DOMString codeType;
|
|
2940
|
-
[CEReactions] attribute DOMString useMap;
|
|
2931
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2932
|
+
[CEReactions, Reflect] attribute DOMString archive;
|
|
2933
|
+
[CEReactions, Reflect] attribute DOMString code;
|
|
2934
|
+
[CEReactions, Reflect] attribute boolean declare;
|
|
2935
|
+
[CEReactions, Reflect] attribute unsigned long hspace;
|
|
2936
|
+
[CEReactions, Reflect] attribute DOMString standby;
|
|
2937
|
+
[CEReactions, Reflect] attribute unsigned long vspace;
|
|
2938
|
+
[CEReactions, ReflectURL] attribute DOMString codeBase;
|
|
2939
|
+
[CEReactions, Reflect] attribute DOMString codeType;
|
|
2940
|
+
[CEReactions, Reflect] attribute DOMString useMap;
|
|
2941
2941
|
|
|
2942
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString border;
|
|
2942
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString border;
|
|
2943
2943
|
};
|
|
2944
2944
|
|
|
2945
2945
|
partial interface HTMLOListElement {
|
|
2946
|
-
[CEReactions] attribute boolean compact;
|
|
2946
|
+
[CEReactions, Reflect] attribute boolean compact;
|
|
2947
2947
|
};
|
|
2948
2948
|
|
|
2949
2949
|
partial interface HTMLParagraphElement {
|
|
2950
|
-
[CEReactions] attribute DOMString align;
|
|
2950
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2951
2951
|
};
|
|
2952
2952
|
|
|
2953
2953
|
[Exposed=Window]
|
|
2954
2954
|
interface HTMLParamElement : HTMLElement {
|
|
2955
2955
|
[HTMLConstructor] constructor();
|
|
2956
2956
|
|
|
2957
|
-
[CEReactions] attribute DOMString name;
|
|
2958
|
-
[CEReactions] attribute DOMString value;
|
|
2959
|
-
[CEReactions] attribute DOMString type;
|
|
2960
|
-
[CEReactions] attribute DOMString valueType;
|
|
2957
|
+
[CEReactions, Reflect] attribute DOMString name;
|
|
2958
|
+
[CEReactions, Reflect] attribute DOMString value;
|
|
2959
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
2960
|
+
[CEReactions, Reflect] attribute DOMString valueType;
|
|
2961
2961
|
};
|
|
2962
2962
|
|
|
2963
2963
|
partial interface HTMLPreElement {
|
|
2964
|
-
[CEReactions] attribute long width;
|
|
2964
|
+
[CEReactions, Reflect] attribute long width;
|
|
2965
2965
|
};
|
|
2966
2966
|
|
|
2967
2967
|
partial interface HTMLStyleElement {
|
|
2968
|
-
[CEReactions] attribute DOMString type;
|
|
2968
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
2969
2969
|
};
|
|
2970
2970
|
|
|
2971
2971
|
partial interface HTMLScriptElement {
|
|
2972
|
-
[CEReactions] attribute DOMString charset;
|
|
2973
|
-
[CEReactions] attribute DOMString event;
|
|
2974
|
-
[CEReactions] attribute DOMString htmlFor;
|
|
2972
|
+
[CEReactions, Reflect] attribute DOMString charset;
|
|
2973
|
+
[CEReactions, Reflect] attribute DOMString event;
|
|
2974
|
+
[CEReactions, Reflect="for"] attribute DOMString htmlFor;
|
|
2975
2975
|
};
|
|
2976
2976
|
|
|
2977
2977
|
partial interface HTMLTableElement {
|
|
2978
|
-
[CEReactions] attribute DOMString align;
|
|
2979
|
-
[CEReactions] attribute DOMString border;
|
|
2980
|
-
[CEReactions] attribute DOMString frame;
|
|
2981
|
-
[CEReactions] attribute DOMString rules;
|
|
2982
|
-
[CEReactions] attribute DOMString summary;
|
|
2983
|
-
[CEReactions] attribute DOMString width;
|
|
2978
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2979
|
+
[CEReactions, Reflect] attribute DOMString border;
|
|
2980
|
+
[CEReactions, Reflect] attribute DOMString frame;
|
|
2981
|
+
[CEReactions, Reflect] attribute DOMString rules;
|
|
2982
|
+
[CEReactions, Reflect] attribute DOMString summary;
|
|
2983
|
+
[CEReactions, Reflect] attribute DOMString width;
|
|
2984
2984
|
|
|
2985
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString bgColor;
|
|
2986
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString cellPadding;
|
|
2987
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString cellSpacing;
|
|
2985
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString bgColor;
|
|
2986
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString cellPadding;
|
|
2987
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString cellSpacing;
|
|
2988
2988
|
};
|
|
2989
2989
|
|
|
2990
2990
|
partial interface HTMLTableSectionElement {
|
|
2991
|
-
[CEReactions] attribute DOMString align;
|
|
2992
|
-
[CEReactions] attribute DOMString ch;
|
|
2993
|
-
[CEReactions] attribute DOMString chOff;
|
|
2994
|
-
[CEReactions] attribute DOMString vAlign;
|
|
2991
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2992
|
+
[CEReactions, Reflect="char"] attribute DOMString ch;
|
|
2993
|
+
[CEReactions, Reflect="charoff"] attribute DOMString chOff;
|
|
2994
|
+
[CEReactions, Reflect] attribute DOMString vAlign;
|
|
2995
2995
|
};
|
|
2996
2996
|
|
|
2997
2997
|
partial interface HTMLTableCellElement {
|
|
2998
|
-
[CEReactions] attribute DOMString align;
|
|
2999
|
-
[CEReactions] attribute DOMString axis;
|
|
3000
|
-
[CEReactions] attribute DOMString height;
|
|
3001
|
-
[CEReactions] attribute DOMString width;
|
|
2998
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
2999
|
+
[CEReactions, Reflect] attribute DOMString axis;
|
|
3000
|
+
[CEReactions, Reflect] attribute DOMString height;
|
|
3001
|
+
[CEReactions, Reflect] attribute DOMString width;
|
|
3002
3002
|
|
|
3003
|
-
[CEReactions] attribute DOMString ch;
|
|
3004
|
-
[CEReactions] attribute DOMString chOff;
|
|
3005
|
-
[CEReactions] attribute boolean noWrap;
|
|
3006
|
-
[CEReactions] attribute DOMString vAlign;
|
|
3003
|
+
[CEReactions, Reflect="char"] attribute DOMString ch;
|
|
3004
|
+
[CEReactions, Reflect="charoff"] attribute DOMString chOff;
|
|
3005
|
+
[CEReactions, Reflect] attribute boolean noWrap;
|
|
3006
|
+
[CEReactions, Reflect] attribute DOMString vAlign;
|
|
3007
3007
|
|
|
3008
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString bgColor;
|
|
3008
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString bgColor;
|
|
3009
3009
|
};
|
|
3010
3010
|
|
|
3011
3011
|
partial interface HTMLTableRowElement {
|
|
3012
|
-
[CEReactions] attribute DOMString align;
|
|
3013
|
-
[CEReactions] attribute DOMString ch;
|
|
3014
|
-
[CEReactions] attribute DOMString chOff;
|
|
3015
|
-
[CEReactions] attribute DOMString vAlign;
|
|
3012
|
+
[CEReactions, Reflect] attribute DOMString align;
|
|
3013
|
+
[CEReactions, Reflect="char"] attribute DOMString ch;
|
|
3014
|
+
[CEReactions, Reflect="charoff"] attribute DOMString chOff;
|
|
3015
|
+
[CEReactions, Reflect] attribute DOMString vAlign;
|
|
3016
3016
|
|
|
3017
|
-
[CEReactions] attribute [LegacyNullToEmptyString] DOMString bgColor;
|
|
3017
|
+
[CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString bgColor;
|
|
3018
3018
|
};
|
|
3019
3019
|
|
|
3020
3020
|
partial interface HTMLUListElement {
|
|
3021
|
-
[CEReactions] attribute boolean compact;
|
|
3022
|
-
[CEReactions] attribute DOMString type;
|
|
3021
|
+
[CEReactions, Reflect] attribute boolean compact;
|
|
3022
|
+
[CEReactions, Reflect] attribute DOMString type;
|
|
3023
3023
|
};
|
|
3024
3024
|
|
|
3025
3025
|
partial interface Document {
|