@webref/idl 3.65.5 → 3.66.1

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/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);
@@ -957,18 +957,18 @@ HTMLInputElement includes PopoverInvokerElement;
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;
@@ -985,13 +985,13 @@ HTMLButtonElement includes PopoverInvokerElement;
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
 
@@ -1166,6 +1166,11 @@ interface HTMLLegendElement : HTMLElement {
1166
1166
  // also has obsolete members
1167
1167
  };
1168
1168
 
1169
+ [Exposed=Window]
1170
+ interface HTMLSelectedContentElement : HTMLElement {
1171
+ [HTMLConstructor] constructor();
1172
+ };
1173
+
1169
1174
  enum SelectionMode {
1170
1175
  "select",
1171
1176
  "start",
@@ -1214,17 +1219,17 @@ dictionary FormDataEventInit : EventInit {
1214
1219
  interface HTMLDetailsElement : HTMLElement {
1215
1220
  [HTMLConstructor] constructor();
1216
1221
 
1217
- [CEReactions] attribute DOMString name;
1218
- [CEReactions] attribute boolean open;
1222
+ [CEReactions, Reflect] attribute DOMString name;
1223
+ [CEReactions, Reflect] attribute boolean open;
1219
1224
  };
1220
1225
 
1221
1226
  [Exposed=Window]
1222
1227
  interface HTMLDialogElement : HTMLElement {
1223
1228
  [HTMLConstructor] constructor();
1224
1229
 
1225
- [CEReactions] attribute boolean open;
1230
+ [CEReactions, Reflect] attribute boolean open;
1226
1231
  attribute DOMString returnValue;
1227
- [CEReactions] attribute DOMString closedBy;
1232
+ [CEReactions, ReflectSetter] attribute DOMString closedBy;
1228
1233
  [CEReactions] undefined show();
1229
1234
  [CEReactions] undefined showModal();
1230
1235
  [CEReactions] undefined close(optional DOMString returnValue);
@@ -1235,15 +1240,15 @@ interface HTMLDialogElement : HTMLElement {
1235
1240
  interface HTMLScriptElement : HTMLElement {
1236
1241
  [HTMLConstructor] constructor();
1237
1242
 
1238
- [CEReactions] attribute DOMString type;
1239
- [CEReactions] attribute USVString src;
1240
- [CEReactions] attribute boolean noModule;
1243
+ [CEReactions, Reflect] attribute DOMString type;
1244
+ [CEReactions, ReflectURL] attribute USVString src;
1245
+ [CEReactions, Reflect] attribute boolean noModule;
1241
1246
  [CEReactions] attribute boolean async;
1242
- [CEReactions] attribute boolean defer;
1243
- [SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;
1247
+ [CEReactions, Reflect] attribute boolean defer;
1248
+ [SameObject, PutForwards=value, Reflect] readonly attribute DOMTokenList blocking;
1244
1249
  [CEReactions] attribute DOMString? crossOrigin;
1245
1250
  [CEReactions] attribute DOMString referrerPolicy;
1246
- [CEReactions] attribute DOMString integrity;
1251
+ [CEReactions, Reflect] attribute DOMString integrity;
1247
1252
  [CEReactions] attribute DOMString fetchPriority;
1248
1253
 
1249
1254
  [CEReactions] attribute DOMString text;
@@ -1259,17 +1264,17 @@ interface HTMLTemplateElement : HTMLElement {
1259
1264
 
1260
1265
  readonly attribute DocumentFragment content;
1261
1266
  [CEReactions] attribute DOMString shadowRootMode;
1262
- [CEReactions] attribute boolean shadowRootDelegatesFocus;
1263
- [CEReactions] attribute boolean shadowRootClonable;
1264
- [CEReactions] attribute boolean shadowRootSerializable;
1265
- [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;
1266
1271
  };
1267
1272
 
1268
1273
  [Exposed=Window]
1269
1274
  interface HTMLSlotElement : HTMLElement {
1270
1275
  [HTMLConstructor] constructor();
1271
1276
 
1272
- [CEReactions] attribute DOMString name;
1277
+ [CEReactions, Reflect] attribute DOMString name;
1273
1278
  sequence<Node> assignedNodes(optional AssignedNodesOptions options = {});
1274
1279
  sequence<Element> assignedElements(optional AssignedNodesOptions options = {});
1275
1280
  undefined assign((Element or Text)... nodes);
@@ -1794,7 +1799,7 @@ dictionary DragEventInit : MouseEventInit {
1794
1799
  };
1795
1800
 
1796
1801
  interface mixin PopoverInvokerElement {
1797
- [CEReactions] attribute Element? popoverTargetElement;
1802
+ [CEReactions, Reflect] attribute Element? popoverTargetElement;
1798
1803
  [CEReactions] attribute DOMString popoverTargetAction;
1799
1804
  };
1800
1805
 
@@ -2651,9 +2656,9 @@ interface Worker : EventTarget {
2651
2656
  };
2652
2657
 
2653
2658
  dictionary WorkerOptions {
2659
+ DOMString name = "";
2654
2660
  WorkerType type = "classic";
2655
2661
  RequestCredentials credentials = "same-origin"; // credentials is only used if type is "module"
2656
- DOMString name = "";
2657
2662
  };
2658
2663
 
2659
2664
  enum WorkerType { "classic", "module" };
@@ -2750,17 +2755,17 @@ dictionary StorageEventInit : EventInit {
2750
2755
  interface HTMLMarqueeElement : HTMLElement {
2751
2756
  [HTMLConstructor] constructor();
2752
2757
 
2753
- [CEReactions] attribute DOMString behavior;
2754
- [CEReactions] attribute DOMString bgColor;
2755
- [CEReactions] attribute DOMString direction;
2756
- [CEReactions] attribute DOMString height;
2757
- [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;
2758
2763
  [CEReactions] attribute long loop;
2759
- [CEReactions] attribute unsigned long scrollAmount;
2760
- [CEReactions] attribute unsigned long scrollDelay;
2761
- [CEReactions] attribute boolean trueSpeed;
2762
- [CEReactions] attribute unsigned long vspace;
2763
- [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;
2764
2769
 
2765
2770
  undefined start();
2766
2771
  undefined stop();
@@ -2770,8 +2775,8 @@ interface HTMLMarqueeElement : HTMLElement {
2770
2775
  interface HTMLFrameSetElement : HTMLElement {
2771
2776
  [HTMLConstructor] constructor();
2772
2777
 
2773
- [CEReactions] attribute DOMString cols;
2774
- [CEReactions] attribute DOMString rows;
2778
+ [CEReactions, Reflect] attribute DOMString cols;
2779
+ [CEReactions, Reflect] attribute DOMString rows;
2775
2780
  };
2776
2781
  HTMLFrameSetElement includes WindowEventHandlers;
2777
2782
 
@@ -2779,242 +2784,242 @@ HTMLFrameSetElement includes WindowEventHandlers;
2779
2784
  interface HTMLFrameElement : HTMLElement {
2780
2785
  [HTMLConstructor] constructor();
2781
2786
 
2782
- [CEReactions] attribute DOMString name;
2783
- [CEReactions] attribute DOMString scrolling;
2784
- [CEReactions] attribute USVString src;
2785
- [CEReactions] attribute DOMString frameBorder;
2786
- [CEReactions] attribute USVString longDesc;
2787
- [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;
2788
2793
  readonly attribute Document? contentDocument;
2789
2794
  readonly attribute WindowProxy? contentWindow;
2790
2795
 
2791
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString marginHeight;
2792
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString marginWidth;
2796
+ [CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString marginHeight;
2797
+ [CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString marginWidth;
2793
2798
  };
2794
2799
 
2795
2800
  partial interface HTMLAnchorElement {
2796
- [CEReactions] attribute DOMString coords;
2797
- [CEReactions] attribute DOMString charset;
2798
- [CEReactions] attribute DOMString name;
2799
- [CEReactions] attribute DOMString rev;
2800
- [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;
2801
2806
  };
2802
2807
 
2803
2808
  partial interface HTMLAreaElement {
2804
- [CEReactions] attribute boolean noHref;
2809
+ [CEReactions, Reflect] attribute boolean noHref;
2805
2810
  };
2806
2811
 
2807
2812
  partial interface HTMLBodyElement {
2808
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString text;
2809
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString link;
2810
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString vLink;
2811
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString aLink;
2812
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString bgColor;
2813
- [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;
2814
2819
  };
2815
2820
 
2816
2821
  partial interface HTMLBRElement {
2817
- [CEReactions] attribute DOMString clear;
2822
+ [CEReactions, Reflect] attribute DOMString clear;
2818
2823
  };
2819
2824
 
2820
2825
  partial interface HTMLTableCaptionElement {
2821
- [CEReactions] attribute DOMString align;
2826
+ [CEReactions, Reflect] attribute DOMString align;
2822
2827
  };
2823
2828
 
2824
2829
  partial interface HTMLTableColElement {
2825
- [CEReactions] attribute DOMString align;
2826
- [CEReactions] attribute DOMString ch;
2827
- [CEReactions] attribute DOMString chOff;
2828
- [CEReactions] attribute DOMString vAlign;
2829
- [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;
2830
2835
  };
2831
2836
 
2832
2837
  [Exposed=Window]
2833
2838
  interface HTMLDirectoryElement : HTMLElement {
2834
2839
  [HTMLConstructor] constructor();
2835
2840
 
2836
- [CEReactions] attribute boolean compact;
2841
+ [CEReactions, Reflect] attribute boolean compact;
2837
2842
  };
2838
2843
 
2839
2844
  partial interface HTMLDivElement {
2840
- [CEReactions] attribute DOMString align;
2845
+ [CEReactions, Reflect] attribute DOMString align;
2841
2846
  };
2842
2847
 
2843
2848
  partial interface HTMLDListElement {
2844
- [CEReactions] attribute boolean compact;
2849
+ [CEReactions, Reflect] attribute boolean compact;
2845
2850
  };
2846
2851
 
2847
2852
  partial interface HTMLEmbedElement {
2848
- [CEReactions] attribute DOMString align;
2849
- [CEReactions] attribute DOMString name;
2853
+ [CEReactions, Reflect] attribute DOMString align;
2854
+ [CEReactions, Reflect] attribute DOMString name;
2850
2855
  };
2851
2856
 
2852
2857
  [Exposed=Window]
2853
2858
  interface HTMLFontElement : HTMLElement {
2854
2859
  [HTMLConstructor] constructor();
2855
2860
 
2856
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString color;
2857
- [CEReactions] attribute DOMString face;
2858
- [CEReactions] attribute DOMString size;
2861
+ [CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString color;
2862
+ [CEReactions, Reflect] attribute DOMString face;
2863
+ [CEReactions, Reflect] attribute DOMString size;
2859
2864
  };
2860
2865
 
2861
2866
  partial interface HTMLHeadingElement {
2862
- [CEReactions] attribute DOMString align;
2867
+ [CEReactions, Reflect] attribute DOMString align;
2863
2868
  };
2864
2869
 
2865
2870
  partial interface HTMLHRElement {
2866
- [CEReactions] attribute DOMString align;
2867
- [CEReactions] attribute DOMString color;
2868
- [CEReactions] attribute boolean noShade;
2869
- [CEReactions] attribute DOMString size;
2870
- [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;
2871
2876
  };
2872
2877
 
2873
2878
  partial interface HTMLHtmlElement {
2874
- [CEReactions] attribute DOMString version;
2879
+ [CEReactions, Reflect] attribute DOMString version;
2875
2880
  };
2876
2881
 
2877
2882
  partial interface HTMLIFrameElement {
2878
- [CEReactions] attribute DOMString align;
2879
- [CEReactions] attribute DOMString scrolling;
2880
- [CEReactions] attribute DOMString frameBorder;
2881
- [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;
2882
2887
 
2883
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString marginHeight;
2884
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString marginWidth;
2888
+ [CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString marginHeight;
2889
+ [CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString marginWidth;
2885
2890
  };
2886
2891
 
2887
2892
  partial interface HTMLImageElement {
2888
- [CEReactions] attribute DOMString name;
2889
- [CEReactions] attribute USVString lowsrc;
2890
- [CEReactions] attribute DOMString align;
2891
- [CEReactions] attribute unsigned long hspace;
2892
- [CEReactions] attribute unsigned long vspace;
2893
- [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;
2894
2899
 
2895
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString border;
2900
+ [CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString border;
2896
2901
  };
2897
2902
 
2898
2903
  partial interface HTMLInputElement {
2899
- [CEReactions] attribute DOMString align;
2900
- [CEReactions] attribute DOMString useMap;
2904
+ [CEReactions, Reflect] attribute DOMString align;
2905
+ [CEReactions, Reflect] attribute DOMString useMap;
2901
2906
  };
2902
2907
 
2903
2908
  partial interface HTMLLegendElement {
2904
- [CEReactions] attribute DOMString align;
2909
+ [CEReactions, Reflect] attribute DOMString align;
2905
2910
  };
2906
2911
 
2907
2912
  partial interface HTMLLIElement {
2908
- [CEReactions] attribute DOMString type;
2913
+ [CEReactions, Reflect] attribute DOMString type;
2909
2914
  };
2910
2915
 
2911
2916
  partial interface HTMLLinkElement {
2912
- [CEReactions] attribute DOMString charset;
2913
- [CEReactions] attribute DOMString rev;
2914
- [CEReactions] attribute DOMString target;
2917
+ [CEReactions, Reflect] attribute DOMString charset;
2918
+ [CEReactions, Reflect] attribute DOMString rev;
2919
+ [CEReactions, Reflect] attribute DOMString target;
2915
2920
  };
2916
2921
 
2917
2922
  partial interface HTMLMenuElement {
2918
- [CEReactions] attribute boolean compact;
2923
+ [CEReactions, Reflect] attribute boolean compact;
2919
2924
  };
2920
2925
 
2921
2926
  partial interface HTMLMetaElement {
2922
- [CEReactions] attribute DOMString scheme;
2927
+ [CEReactions, Reflect] attribute DOMString scheme;
2923
2928
  };
2924
2929
 
2925
2930
  partial interface HTMLObjectElement {
2926
- [CEReactions] attribute DOMString align;
2927
- [CEReactions] attribute DOMString archive;
2928
- [CEReactions] attribute DOMString code;
2929
- [CEReactions] attribute boolean declare;
2930
- [CEReactions] attribute unsigned long hspace;
2931
- [CEReactions] attribute DOMString standby;
2932
- [CEReactions] attribute unsigned long vspace;
2933
- [CEReactions] attribute DOMString codeBase;
2934
- [CEReactions] attribute DOMString codeType;
2935
- [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;
2936
2941
 
2937
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString border;
2942
+ [CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString border;
2938
2943
  };
2939
2944
 
2940
2945
  partial interface HTMLOListElement {
2941
- [CEReactions] attribute boolean compact;
2946
+ [CEReactions, Reflect] attribute boolean compact;
2942
2947
  };
2943
2948
 
2944
2949
  partial interface HTMLParagraphElement {
2945
- [CEReactions] attribute DOMString align;
2950
+ [CEReactions, Reflect] attribute DOMString align;
2946
2951
  };
2947
2952
 
2948
2953
  [Exposed=Window]
2949
2954
  interface HTMLParamElement : HTMLElement {
2950
2955
  [HTMLConstructor] constructor();
2951
2956
 
2952
- [CEReactions] attribute DOMString name;
2953
- [CEReactions] attribute DOMString value;
2954
- [CEReactions] attribute DOMString type;
2955
- [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;
2956
2961
  };
2957
2962
 
2958
2963
  partial interface HTMLPreElement {
2959
- [CEReactions] attribute long width;
2964
+ [CEReactions, Reflect] attribute long width;
2960
2965
  };
2961
2966
 
2962
2967
  partial interface HTMLStyleElement {
2963
- [CEReactions] attribute DOMString type;
2968
+ [CEReactions, Reflect] attribute DOMString type;
2964
2969
  };
2965
2970
 
2966
2971
  partial interface HTMLScriptElement {
2967
- [CEReactions] attribute DOMString charset;
2968
- [CEReactions] attribute DOMString event;
2969
- [CEReactions] attribute DOMString htmlFor;
2972
+ [CEReactions, Reflect] attribute DOMString charset;
2973
+ [CEReactions, Reflect] attribute DOMString event;
2974
+ [CEReactions, Reflect="for"] attribute DOMString htmlFor;
2970
2975
  };
2971
2976
 
2972
2977
  partial interface HTMLTableElement {
2973
- [CEReactions] attribute DOMString align;
2974
- [CEReactions] attribute DOMString border;
2975
- [CEReactions] attribute DOMString frame;
2976
- [CEReactions] attribute DOMString rules;
2977
- [CEReactions] attribute DOMString summary;
2978
- [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;
2979
2984
 
2980
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString bgColor;
2981
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString cellPadding;
2982
- [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;
2983
2988
  };
2984
2989
 
2985
2990
  partial interface HTMLTableSectionElement {
2986
- [CEReactions] attribute DOMString align;
2987
- [CEReactions] attribute DOMString ch;
2988
- [CEReactions] attribute DOMString chOff;
2989
- [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;
2990
2995
  };
2991
2996
 
2992
2997
  partial interface HTMLTableCellElement {
2993
- [CEReactions] attribute DOMString align;
2994
- [CEReactions] attribute DOMString axis;
2995
- [CEReactions] attribute DOMString height;
2996
- [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;
2997
3002
 
2998
- [CEReactions] attribute DOMString ch;
2999
- [CEReactions] attribute DOMString chOff;
3000
- [CEReactions] attribute boolean noWrap;
3001
- [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;
3002
3007
 
3003
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString bgColor;
3008
+ [CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString bgColor;
3004
3009
  };
3005
3010
 
3006
3011
  partial interface HTMLTableRowElement {
3007
- [CEReactions] attribute DOMString align;
3008
- [CEReactions] attribute DOMString ch;
3009
- [CEReactions] attribute DOMString chOff;
3010
- [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;
3011
3016
 
3012
- [CEReactions] attribute [LegacyNullToEmptyString] DOMString bgColor;
3017
+ [CEReactions, Reflect] attribute [LegacyNullToEmptyString] DOMString bgColor;
3013
3018
  };
3014
3019
 
3015
3020
  partial interface HTMLUListElement {
3016
- [CEReactions] attribute boolean compact;
3017
- [CEReactions] attribute DOMString type;
3021
+ [CEReactions, Reflect] attribute boolean compact;
3022
+ [CEReactions, Reflect] attribute DOMString type;
3018
3023
  };
3019
3024
 
3020
3025
  partial interface Document {