forked from mdn/content
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpecData.json
2072 lines (2072 loc) · 58.9 KB
/
SpecData.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Accelerometer": {
"name": "Accelerometer",
"url": "https://www.w3.org/TR/accelerometer/",
"status": "CR"
},
"Alarm API": {
"name": "Web Alarms API",
"url": "https://www.w3.org/2012/sysapps/web-alarms/",
"status": "Obsolete"
},
"AmbientLight": {
"name": "Ambient Light Sensor",
"url": "https://w3c.github.io/ambient-light/",
"status": "CR"
},
"ARIA": {
"name": "Accessible Rich Internet Applications (WAI-ARIA) 1.3",
"url": "https://w3c.github.io/aria/",
"status": "ED"
},
"ARIA 1.1": {
"name": "Accessible Rich Internet Applications (WAI-ARIA) 1.1",
"url": "https://www.w3.org/TR/wai-aria-1.1/",
"status": "REC"
},
"ARIA 1.2": {
"name": "Accessible Rich Internet Applications (WAI-ARIA) 1.2",
"url": "https://www.w3.org/TR/wai-aria-1.2/",
"status": "CR"
},
"ARIA Authoring Practices": {
"name": "WAI-ARIA Authoring Practices",
"url": "https://www.w3.org/WAI/ARIA/apg/",
"status": "Living"
},
"ARIA Authoring Practices 1.1": {
"name": "WAI-ARIA Authoring Practices 1.1",
"url": "https://www.w3.org/TR/wai-aria-practices-1.1/",
"status": "NOTE"
},
"ARIA Authoring Practices 1.2": {
"name": "WAI-ARIA Authoring Practices 1.2",
"url": "https://www.w3.org/TR/wai-aria-practices-1.2/",
"status": "WD"
},
"ARIA in HTML": {
"name": "ARIA in HTML",
"url": "https://w3c.github.io/html-aria/",
"status": "WD"
},
"Async Function": {
"name": "ECMAScript Async Functions",
"url": "https://tc39.es/ecmascript-asyncawait/",
"status": "Draft"
},
"Async Iteration": {
"name": "ECMAScript Async Iteration Functions",
"url": "https://tc39.es/proposal-async-iteration/",
"status": "Draft"
},
"Audio Output": {
"name": "Audio Output Devices API",
"url": "https://w3c.github.io/mediacapture-output/",
"status": "CR"
},
"Background Fetch": {
"name": "Background Fetch",
"url": "https://wicg.github.io/background-fetch/",
"status": "Draft"
},
"Background Sync": {
"name": "Web Background Synchronization",
"url": "https://wicg.github.io/background-sync/spec/",
"status": "Living"
},
"Background Tasks": {
"name": "Cooperative Scheduling of Background Tasks",
"url": "https://www.w3.org/TR/requestidlecallback/",
"status": "PR"
},
"Badging API": {
"name": "Badging API",
"url": "https://w3c.github.io/badging/",
"status": "Draft"
},
"Barcode Detection API": {
"name": "Accelerated Shape Detection in Images",
"url": "https://wicg.github.io/shape-detection-api/",
"status": "Draft"
},
"Battery API": {
"name": "Battery Status API",
"url": "https://w3c.github.io/battery/",
"status": "CR"
},
"Beacon": {
"name": "Beacon",
"url": "https://w3c.github.io/beacon/",
"status": "CR"
},
"Clipboard API": {
"name": "Clipboard API and events",
"url": "https://w3c.github.io/clipboard-apis/",
"status": "WD"
},
"Compat": {
"name": "Compatibility Standard",
"url": "https://compat.spec.whatwg.org/",
"status": "Living"
},
"Compositing": {
"name": "Compositing and Blending Level 1",
"url": "https://drafts.fxtf.org/compositing-1/",
"status": "CR"
},
"Console API": {
"name": "Console API",
"url": "https://console.spec.whatwg.org/",
"status": "Living"
},
"Compression Streams": {
"name": "Compression Streams",
"url": "https://wicg.github.io/compression/",
"status": "Draft"
},
"Contacts": {
"name": "Contacts Manager API",
"url": "https://www.w3.org/2012/sysapps/contacts-manager-api/",
"status": "Obsolete"
},
"Contact Picker API": {
"name": "Contact Picker API",
"url": "https://wicg.github.io/contact-api/spec/",
"status": "Draft"
},
"Content Index API": {
"name": "Content Index API",
"url": "https://wicg.github.io/content-index/spec/",
"status": "ED"
},
"Cookie Prefixes": {
"name": "Cookie Prefixes",
"url": "https://datatracker.ietf.org/doc/html/draft-west-cookie-prefixes-05",
"status": "Draft"
},
"Cookie Store API": {
"name": "Cookie Store API",
"url": "https://wicg.github.io/cookie-store/",
"status": "Draft"
},
"Credential Management": {
"name": "Credential Management Level 1",
"url": "https://w3c.github.io/webappsec-credential-management/",
"status": "WD"
},
"CSP 1.0": {
"name": "Content Security Policy 1.0",
"url": "https://www.w3.org/TR/CSP1/",
"status": "Obsolete"
},
"CSP 1.1": {
"name": "Content Security Policy Level 2",
"url": "https://www.w3.org/TR/CSP2/",
"status": "REC"
},
"CSP 3.0": {
"name": "Content Security Policy Level 3",
"url": "https://w3c.github.io/webappsec-csp/",
"status": "WD"
},
"CSP Embedded": {
"name": "Content Security Policy: Embedded Enforcement",
"url": "https://w3c.github.io/webappsec-cspee/",
"status": "WD"
},
"CSS1": {
"name": "CSS Level 1",
"url": "https://www.w3.org/TR/CSS1/",
"status": "REC"
},
"CSS2.1": {
"name": "CSS Level 2 (Revision 1)",
"url": "https://www.w3.org/TR/CSS2/",
"status": "REC"
},
"CSS2.2": {
"name": "CSS Level 2 (Revision 2)",
"url": "https://www.w3.org/TR/CSS22/",
"status": "WD"
},
"CSS3 Animations": {
"name": "CSS Animations Level 1",
"url": "https://drafts.csswg.org/css-animations-1/",
"status": "WD"
},
"CSS3 Animations 2": {
"name": "CSS Animations Level 2",
"url": "https://drafts.csswg.org/css-animations-2/",
"status": "WD"
},
"CSS3 Backgrounds": {
"name": "CSS Backgrounds and Borders Module Level 3",
"url": "https://drafts.csswg.org/css-backgrounds-3/",
"status": "CR"
},
"CSS3 Basic UI": {
"name": "CSS Basic User Interface Module Level 3",
"url": "https://drafts.csswg.org/css-ui-3/",
"status": "REC"
},
"CSS3 Basic UI 4": {
"name": "CSS Basic User Interface Module Level 4",
"url": "https://drafts.csswg.org/css-ui-4/",
"status": "ED"
},
"CSS3 Box": {
"name": "CSS Box Model",
"url": "https://drafts.csswg.org/css-box-3/",
"status": "CR"
},
"CSS3 Box Alignment": {
"name": "CSS Box Alignment Module Level 3",
"url": "https://drafts.csswg.org/css-align-3/",
"status": "WD"
},
"CSS3 Cascade": {
"name": "CSS Cascading and Inheritance Level 3",
"url": "https://drafts.csswg.org/css-cascade-3/",
"status": "REC"
},
"CSS3 Colors": {
"name": "CSS Color Module Level 3",
"url": "https://drafts.csswg.org/css-color-3/",
"status": "REC"
},
"CSS3 Conditional": {
"name": "CSS Conditional Rules Module Level 3",
"url": "https://drafts.csswg.org/css-conditional-3/",
"status": "CR"
},
"CSS3 Content": {
"name": "CSS Generated Content Module Level 3",
"url": "https://drafts.csswg.org/css-content-3/",
"status": "WD"
},
"CSS3 Counter Styles": {
"name": "CSS Counter Styles Level 3",
"url": "https://drafts.csswg.org/css-counter-styles-3/",
"status": "CR"
},
"CSS3 Device": {
"name": "CSS Device Adaptation",
"url": "https://drafts.csswg.org/css-device-adapt/",
"status": "WD"
},
"CSS3 Display": {
"name": "CSS Display Module Level 3",
"url": "https://drafts.csswg.org/css-display/",
"status": "CR"
},
"CSS Easing 1": {
"name": "CSS Easing Functions Level 1",
"url": "https://drafts.csswg.org/css-easing-1/",
"status": "CR"
},
"CSS3 Environment Variables": {
"name": "CSS Environment Variables Module Level 1",
"url": "https://drafts.csswg.org/css-env-1/",
"status": "ED"
},
"CSS3 Font Loading": {
"name": "CSS Font Loading Module Level 3",
"url": "https://drafts.csswg.org/css-font-loading/",
"status": "WD"
},
"CSS3 Fonts": {
"name": "CSS Fonts Module Level 3",
"url": "https://drafts.csswg.org/css-fonts-3/",
"status": "REC"
},
"CSS3 Fragmentation": {
"name": "CSS Fragmentation Module Level 3",
"url": "https://drafts.csswg.org/css-break-3/",
"status": "CR"
},
"CSS3 GCPM": {
"name": "CSS Generated Content for Paged Media Module",
"url": "https://drafts.csswg.org/css-gcpm-3/",
"status": "WD"
},
"CSS3 Images": {
"name": "CSS Images Module Level 3",
"url": "https://drafts.csswg.org/css-images-3/",
"status": "CR"
},
"CSS3 Inline": {
"name": "CSS Inline Layout",
"url": "https://drafts.csswg.org/css-inline/",
"status": "WD"
},
"CSS3 Lists": {
"name": "CSS Lists Module Level 3",
"url": "https://drafts.csswg.org/css-lists-3/",
"status": "WD"
},
"CSS3 Media Queries": {
"name": "Media Queries",
"url": "https://drafts.csswg.org/mediaqueries-3/",
"status": "REC"
},
"CSS3 Multicol": {
"name": "CSS Multi-column Layout Module",
"url": "https://drafts.csswg.org/css-multicol-1/",
"status": "WD"
},
"CSS3 Overflow": {
"name": "CSS Overflow Module Level 3",
"url": "https://drafts.csswg.org/css-overflow-3/",
"status": "WD"
},
"CSS3 Namespaces": {
"name": "CSS Namespaces Module",
"url": "https://drafts.csswg.org/css-namespaces-3/",
"status": "REC"
},
"CSS3 Paged Media": {
"name": "CSS Paged Media Module Level 3",
"url": "https://drafts.csswg.org/css-page-3/",
"status": "WD"
},
"CSS3 Positioning": {
"name": "CSS Positioned Layout Module Level 3",
"url": "https://drafts.csswg.org/css-position-3/",
"status": "WD"
},
"CSS3 Regions": {
"name": "CSS Regions Module Level 1",
"url": "https://drafts.csswg.org/css-regions-1/",
"status": "WD"
},
"CSS3 Ruby": {
"name": "CSS Ruby Layout Module Level 1",
"url": "https://drafts.csswg.org/css-ruby/",
"status": "WD"
},
"CSS3 Selectors": {
"name": "Selectors Level 3",
"url": "https://drafts.csswg.org/selectors-3/",
"status": "REC"
},
"CSS3 Sizing": {
"name": "CSS Box Sizing Module Level 3",
"url": "https://drafts.csswg.org/css-sizing-3/",
"status": "WD"
},
"CSS3 Speech": {
"name": "CSS Speech Module",
"url": "https://drafts.csswg.org/css-speech-1/",
"status": "CR"
},
"CSS3 Style": {
"name": "CSS Style Attributes",
"url": "https://drafts.csswg.org/css-style-attr/",
"status": "REC"
},
"CSS3 Syntax": {
"name": "CSS Syntax Level 3",
"url": "https://drafts.csswg.org/css-syntax/",
"status": "CR"
},
"CSS3 Text": {
"name": "CSS Text Module Level 3",
"url": "https://drafts.csswg.org/css-text-3/",
"status": "CR"
},
"CSS3 Text Decoration": {
"name": "CSS Text Decoration Module Level 3",
"url": "https://drafts.csswg.org/css-text-decor-3/",
"status": "CR"
},
"CSS3 Transforms": {
"name": "CSS Transforms Level 1",
"url": "https://drafts.csswg.org/css-transforms/",
"status": "WD"
},
"CSS3 Transitions": {
"name": "CSS Transitions",
"url": "https://drafts.csswg.org/css-transitions/",
"status": "WD"
},
"CSS3 Transitions Level 2": {
"name": "CSS Transitions Level 2",
"url": "https://drafts.csswg.org/css-transitions-2/",
"status": "ED"
},
"CSS3 Values": {
"name": "CSS Values and Units Module Level 3",
"url": "https://drafts.csswg.org/css-values-3/",
"status": "CR"
},
"CSS3 Variables": {
"name": "CSS Custom Properties for Cascading Variables Module Level 1",
"url": "https://www.w3.org/TR/css-variables-1/",
"status": "CR"
},
"CSS3 Writing Modes": {
"name": "CSS Writing Modes Module Level 3",
"url": "https://drafts.csswg.org/css-writing-modes-3/",
"status": "PR"
},
"CSS4 Backgrounds": {
"name": "CSS Backgrounds and Borders Module Level 4",
"url": "https://drafts.csswg.org/css-backgrounds-4/",
"status": "ED"
},
"CSS4 Basic UI": {
"name": "CSS Basic User Interface Module Level 4",
"url": "https://drafts.csswg.org/css-ui-4/",
"status": "WD"
},
"CSS4 Box": {
"name": "CSS Box Model Module Level 4",
"url": "https://drafts.csswg.org/css-box-4/",
"status": "ED"
},
"CSS4 Cascade": {
"name": "CSS Cascading and Inheritance Level 4",
"url": "https://drafts.csswg.org/css-cascade/",
"status": "CR"
},
"CSS4 Colors": {
"name": "CSS Color Module Level 4",
"url": "https://drafts.csswg.org/css-color/",
"status": "WD"
},
"CSS4 Conditional": {
"name": "CSS Conditional Rules Module Level 4",
"url": "https://drafts.csswg.org/css-conditional-4/",
"status": "ED"
},
"CSS4 Fonts": {
"name": "CSS Fonts Module Level 4",
"url": "https://drafts.csswg.org/css-fonts-4/",
"status": "WD"
},
"CSS4 Fragmentation": {
"name": "CSS Fragmentation Module Level 4",
"url": "https://drafts.csswg.org/css-break-4/",
"status": "WD"
},
"CSS4 Images": {
"name": "CSS Images Module Level 4",
"url": "https://drafts.csswg.org/css-images-4/",
"status": "WD"
},
"CSS4 Media Queries": {
"name": "Media Queries Level 4",
"url": "https://drafts.csswg.org/mediaqueries-4/",
"status": "CR"
},
"CSS4 Overflow": {
"name": "CSS Overflow Module Level 4",
"url": "https://drafts.csswg.org/css-overflow-4/",
"status": "WD"
},
"CSS4 Pseudo-Elements": {
"name": "CSS Pseudo-Elements Level 4",
"url": "https://drafts.csswg.org/css-pseudo-4/",
"status": "WD"
},
"CSS4 Selectors": {
"name": "Selectors Level 4",
"url": "https://drafts.csswg.org/selectors-4/",
"status": "WD"
},
"CSS4 Sizing": {
"name": "CSS Box Sizing Module Level 4",
"url": "https://drafts.csswg.org/css-sizing-4/",
"status": "ED"
},
"CSS4 Text": {
"name": "CSS Text Module Level 4",
"url": "https://drafts.csswg.org/css-text-4/",
"status": "ED"
},
"CSS4 Text Decoration": {
"name": "CSS Text Decoration Module Level 4",
"url": "https://drafts.csswg.org/css-text-decor-4/",
"status": "WD"
},
"CSS4 Values": {
"name": "CSS Values and Units Module Level 4",
"url": "https://drafts.csswg.org/css-values-4/",
"status": "ED"
},
"CSS4 Writing Modes": {
"name": "CSS Writing Modes Level 4",
"url": "https://drafts.csswg.org/css-writing-modes-4/",
"status": "CR"
},
"CSS5 Cascade": {
"name": "CSS Cascading and Inheritance Level 5",
"url": "https://drafts.csswg.org/css-cascade-5/",
"status": "WD"
},
"CSS5 Colors": {
"name": "CSS Color Module Level 5",
"url": "https://drafts.csswg.org/css-color-5/",
"status": "WD"
},
"CSS5 Fonts": {
"name": "CSS Fonts Module Level 5",
"url": "https://drafts.csswg.org/css-fonts-5/",
"status": "WD"
},
"CSS5 Media Queries": {
"name": "Media Queries Level 5",
"url": "https://drafts.csswg.org/mediaqueries-5/",
"status": "ED"
},
"CSS Animation Worklet": {
"name": "CSS Animation Worklet API",
"url": "https://wicg.github.io/animation-worklet/",
"status": "Draft"
},
"CSS Containment": {
"name": "CSS Containment Module Level 1",
"url": "https://drafts.csswg.org/css-contain-1/",
"status": "REC"
},
"CSS Containment 2": {
"name": "CSS Containment Module Level 2",
"url": "https://drafts.csswg.org/css-contain-2/",
"status": "WD"
},
"CSS Color Adjust": {
"name": "CSS Color Adjustment Module Level 1",
"url": "https://drafts.csswg.org/css-color-adjust-1/",
"status": "ED"
},
"CSS Exclusions": {
"name": "CSS Exclusions Module Level 1",
"url": "https://drafts.csswg.org/css-exclusions/",
"status": "WD"
},
"CSS Flexbox": {
"name": "CSS Flexible Box Layout Module",
"url": "https://drafts.csswg.org/css-flexbox-1/",
"status": "CR"
},
"CSS Font Rendering": {
"name": "CSS Font Rendering Controls Module Level 1",
"url": "https://tabatkins.github.io/specs/css-font-display/",
"status": "Draft"
},
"CSS Grid": {
"name": "CSS Grid Layout",
"url": "https://drafts.csswg.org/css-grid/",
"status": "CR"
},
"CSS Grid 2": {
"name": "CSS Grid Layout Module Level 2",
"url": "https://drafts.csswg.org/css-grid-2/",
"status": "WD"
},
"CSS Grid 3": {
"name": "CSS Grid Layout Module Level 3",
"url": "https://drafts.csswg.org/css-grid-3/",
"status": "ED"
},
"CSS Layout": {
"name": "CSS Layout API Level 1",
"url": "https://drafts.css-houdini.org/css-layout-api-1/",
"status": "WD"
},
"CSS Line Grid": {
"name": "CSS Line Grid Module Level 1",
"url": "https://drafts.csswg.org/css-line-grid/",
"status": "WD"
},
"CSS Logical Properties": {
"name": "CSS Logical Properties and Values Level 1",
"url": "https://drafts.csswg.org/css-logical/",
"status": "ED"
},
"CSS Masks": {
"name": "CSS Masking Module Level 1",
"url": "https://drafts.fxtf.org/css-masking-1/",
"status": "CR"
},
"CSS Non-element Selectors": {
"name": "Non-element Selectors Module Level 1",
"url": "https://drafts.csswg.org/selectors-nonelement/",
"status": "WD"
},
"CSS Painting API": {
"name": "CSS Painting API Level 1",
"url": "https://drafts.css-houdini.org/css-paint-api-1/",
"status": "WD"
},
"CSS Overscroll Behavior": {
"name": "CSS Overscroll Behavior Module Level 1",
"url": "https://drafts.csswg.org/css-overscroll-1/",
"status": "WD"
},
"CSS Properties and Values API": {
"name": "CSS Properties and Values API Level 1",
"url": "https://drafts.css-houdini.org/css-properties-values-api-1/",
"status": "WD"
},
"CSS Rhythmic Sizing": {
"name": "CSS Rhythmic Sizing",
"url": "https://drafts.csswg.org/css-rhythm/",
"status": "WD"
},
"CSS Round Display": {
"name": "CSS Round Display Level 1",
"url": "https://drafts.csswg.org/css-round-display/",
"status": "WD"
},
"CSS Scope": {
"name": "CSS Scoping Module Level 1",
"url": "https://drafts.csswg.org/css-scoping/",
"status": "WD"
},
"CSS Scrollbars": {
"name": "CSS Scrollbars Level 1",
"url": "https://drafts.csswg.org/css-scrollbars-1/",
"status": "WD"
},
"CSS Scroll Anchoring": {
"name": "CSS Scroll Anchoring Module Level 1",
"url": "https://drafts.csswg.org/css-scroll-anchoring/",
"status": "ED"
},
"CSS Scroll Snap": {
"name": "CSS Scroll Snap Module Level 1",
"url": "https://drafts.csswg.org/css-scroll-snap-1/",
"status": "CR"
},
"CSS Shadow Parts": {
"name": "Shadow Parts",
"url": "https://drafts.csswg.org/css-shadow-parts-1/",
"status": "WD"
},
"CSS Shapes": {
"name": "CSS Shapes Module Level 1",
"url": "https://drafts.csswg.org/css-shapes/",
"status": "CR"
},
"CSS Shapes 2": {
"name": "CSS Shapes Module Level 2",
"url": "https://drafts.csswg.org/css-shapes-2/",
"status": "ED"
},
"CSS Text Size Adjust": {
"name": "CSS Mobile Text Size Adjustment Module Level 1",
"url": "https://drafts.csswg.org/css-size-adjust/",
"status": "ED"
},
"CSS Transforms 2": {
"name": "CSS Transforms Level 2",
"url": "https://drafts.csswg.org/css-transforms-2/",
"status": "ED"
},
"CSS Typed OM": {
"name": "CSS Typed OM Level 1",
"url": "https://drafts.css-houdini.org/css-typed-om-1/",
"status": "WD"
},
"CSS Will Change": {
"name": "CSS Will Change Module Level 1",
"url": "https://drafts.csswg.org/css-will-change/",
"status": "CR"
},
"CSSOM": {
"name": "CSS Object Model (CSSOM)",
"url": "https://drafts.csswg.org/cssom/",
"status": "WD"
},
"CSSOM View": {
"name": "CSS Object Model (CSSOM) View Module",
"url": "https://drafts.csswg.org/cssom-view/",
"status": "WD"
},
"Custom Scroll Restoration": {
"name": "Custom Scroll Restoration - History-based API",
"url": "https://majido.github.io/scroll-restoration-proposal/history-based-api.html",
"status": "Draft"
},
"Data Store API": {
"name": "Data Store API",
"url": "https://airpingu.github.io/data-store-api/index.html",
"status": "Draft"
},
"Device Memory": {
"name": "Device Memory 1",
"url": "https://w3c.github.io/device-memory/",
"status": "ED"
},
"Device Orientation": {
"name": "DeviceOrientation Event Specification",
"url": "https://w3c.github.io/deviceorientation/",
"status": "ED"
},
"Digest Headers": {
"name": "Digest Headers",
"url": "https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-digest-headers-05",
"status": "Draft"
},
"DOM Parsing": {
"name": "DOM Parsing and Serialization",
"url": "https://w3c.github.io/DOM-Parsing/",
"status": "WD"
},
"DOM WHATWG": {
"name": "DOM",
"url": "https://dom.spec.whatwg.org/",
"status": "Living"
},
"DOM1": {
"name": "Document Object Model (DOM) Level 1 Specification",
"url": "https://www.w3.org/TR/REC-DOM-Level-1/",
"status": "Obsolete"
},
"DOM2 Core": {
"name": "Document Object Model (DOM) Level 2 Core Specification",
"url": "https://www.w3.org/TR/DOM-Level-2-Core/",
"status": "Obsolete"
},
"DOM2 Events": {
"name": "Document Object Model (DOM) Level 2 Events Specification",
"url": "https://www.w3.org/TR/DOM-Level-2-Events/events.html",
"status": "Obsolete"
},
"DOM2 HTML": {
"name": "Document Object Model (DOM) Level 2 HTML Specification",
"url": "https://www.w3.org/TR/DOM-Level-2-HTML/",
"status": "Obsolete"
},
"DOM2 Style": {
"name": "Document Object Model (DOM) Level 2 Style Specification",
"url": "https://www.w3.org/TR/DOM-Level-2-Style/",
"status": "Obsolete"
},
"DOM2 Traversal_Range": {
"name": "Document Object Model (DOM) Level 2 Traversal and Range Specification",
"url": "https://www.w3.org/TR/DOM-Level-2-Traversal-Range/",
"status": "Obsolete"
},
"DOM3 Core": {
"name": "Document Object Model (DOM) Level 3 Core Specification",
"url": "https://www.w3.org/TR/DOM-Level-3-Core/",
"status": "Obsolete"
},
"DOM3 Events": {
"name": "Document Object Model (DOM) Level 3 Events Specification",
"url": "https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/",
"status": "Obsolete"
},
"DOM3 XPath": {
"name": "Document Object Model (DOM) Level 3 XPath Specification",
"url": "https://www.w3.org/TR/DOM-Level-3-XPath/",
"status": "REC"
},
"DOM4": {
"name": "DOM4",
"url": "https://www.w3.org/TR/dom/",
"status": "Obsolete"
},
"Element Timing API": {
"name": "Element Timing",
"url": "https://wicg.github.io/element-timing/",
"status": "ED"
},
"Element Traversal": {
"name": "Element Traversal Specification",
"url": "https://www.w3.org/TR/ElementTraversal/",
"status": "Obsolete"
},
"EME": {
"name": "Encrypted Media Extensions",
"url": "https://w3c.github.io/encrypted-media/",
"status": "REC"
},
"Encoding": {
"name": "Encoding",
"url": "https://encoding.spec.whatwg.org/",
"status": "Living"
},
"ES1": {
"name": "ECMAScript 1st Edition (ECMA-262)",
"url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%201st%20edition,%20June%201997.pdf",
"status": "Standard"
},
"ES3": {
"name": "ECMAScript 3rd Edition (ECMA-262)",
"url": "https://www.ecma-international.org/publications/files/ECMA-ST-ARCH/ECMA-262,%203rd%20edition,%20December%201999.pdf",
"status": "Standard"
},
"ES5.1": {
"name": "ECMAScript 5.1 (ECMA-262)",
"url": "https://www.ecma-international.org/ecma-262/5.1/",
"status": "Standard"
},
"ES6": {
"name": "ECMAScript 2015 (6th Edition, ECMA-262)",
"url": "https://www.ecma-international.org/ecma-262/6.0/",
"status": "Standard"
},
"ES2016": {
"name": "ECMAScript 2016 (ECMA-262)",
"url": "https://www.ecma-international.org/ecma-262/7.0/",
"status": "Standard"
},
"ES2017": {
"name": "ECMAScript 2017 (ECMA-262)",
"url": "https://www.ecma-international.org/ecma-262/8.0/",
"status": "Standard"
},
"ES2018": {
"name": "ECMAScript 2018 (ECMA-262)",
"url": "https://www.ecma-international.org/ecma-262/9.0/",
"status": "Standard"
},
"ESDraft": {
"name": "ECMAScript (ECMA-262)",
"url": "https://tc39.es/ecma262/",
"status": "Living"
},
"ES Int 1.0": {
"name": "ECMAScript Internationalization API 1.0 (ECMA-402)",
"url": "https://www.ecma-international.org/ecma-402/1.0/",
"status": "Standard"
},
"ES Int 2.0": {
"name": "ECMAScript Internationalization API 2.0 (ECMA-402)",
"url": "https://www.ecma-international.org/ecma-402/2.0/",
"status": "Standard"
},
"ES Int Draft": {
"name": "ECMAScript Internationalization API (ECMA-402)",
"url": "https://tc39.es/ecma402/",
"status": "Living"
},
"Event Timing API": {
"name": "Event Timing API",
"url": "https://wicg.github.io/event-timing/",
"status": "ED"
},
"EyeDropper": {
"name": "EyeDropper",
"url": "https://wicg.github.io/eyedropper-api/",
"status": "Draft"
},
"Expect-CT": {
"name": "Expect-CT Extension for HTTP",
"url": "https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-expect-ct-08",
"status": "Draft"
},
"Feature Policy": {
"name": "Permissions Policy",
"url": "https://w3c.github.io/webappsec-permissions-policy/",
"status": "ED"
},
"Fetch": {
"name": "Fetch",
"url": "https://fetch.spec.whatwg.org/",
"status": "Living"
},
"Fetch Metadata": {
"name": "Fetch Metadata Request Headers",
"url": "https://w3c.github.io/webappsec-fetch-metadata/",
"status": "ED"
},
"File API": {
"name": "File API",
"url": "https://w3c.github.io/FileAPI/",
"status": "WD"
},
"File System Access API": {
"name": "File System Access API",
"url": "https://wicg.github.io/file-system-access/",
"status": "WD"
},
"File System API": {
"name": "File and Directory Entries API",
"url": "https://wicg.github.io/entries-api/",
"status": "Draft"
},
"FileSystem": {
"name": "FileSystem API",
"url": "https://w3c.github.io/filesystem-api/",
"status": "ED"
},
"Filters 1.0": {
"name": "Filter Effects Module Level 1",
"url": "https://drafts.fxtf.org/filter-effects/",
"status": "WD"
},
"Filters 2.0": {
"name": "Filter Effects Module Level 2",
"url": "https://drafts.fxtf.org/filter-effects-2/",
"status": "ED"
},
"Frame Timing": {
"name": "Frame Timing",
"url": "https://wicg.github.io/frame-timing/",
"status": "Draft"
},
"Fullscreen": {
"name": "Fullscreen API",
"url": "https://fullscreen.spec.whatwg.org/",
"status": "Living"
},
"Gamepad": {
"name": "Gamepad",
"url": "https://w3c.github.io/gamepad/",
"status": "WD"
},
"GamepadExtensions": {
"name": "Gamepad Extensions",
"url": "https://w3c.github.io/gamepad/extensions.html",
"status": "ED"
},
"Generic Sensor": {
"name": "Generic Sensor API",
"url": "https://www.w3.org/TR/generic-sensor/",
"status": "CR"
},
"Geolocation": {
"name": "Geolocation API",
"url": "https://w3c.github.io/geolocation-api/",
"status": "REC"
},
"Geometry Interfaces": {
"name": "Geometry Interfaces Module Level 1",
"url": "https://drafts.fxtf.org/geometry/",
"status": "CR"
},
"Gyroscope": {
"name": "Gyroscope",
"url": "https://www.w3.org/TR/gyroscope/",
"status": "CR"
},
"Highres Time": {
"name": "High Resolution Time",
"url": "https://www.w3.org/TR/hr-time-1/",
"status": "REC"
},
"Highres Time Level 2": {
"name": "High Resolution Time Level 2",
"url": "https://www.w3.org/TR/hr-time-2/",
"status": "REC"
},
"Highres Time Level 3": {
"name": "High Resolution Time Level 3",
"url": "https://w3c.github.io/hr-time/",
"status": "ED"
},
"HSTS": {
"name": "HTTP Strict Transport Security (HSTS)",
"url": "https://datatracker.ietf.org/doc/html/rfc6797",
"status": "RFC"
},
"HTML Editing": {
"name": "HTML Editing APIs",
"url": "https://w3c.github.io/editing/",
"status": "ED"
},
"HTML Imports": {
"name": "HTML Imports",
"url": "https://w3c.github.io/webcomponents/spec/imports/",
"status": "WD"
},
"HTML Media Capture": {
"name": "HTML Media Capture",
"url": "https://w3c.github.io/html-media-capture/",
"status": "REC"
},
"HTML Microdata": {
"name": "HTML Microdata",
"url": "https://w3c.github.io/microdata/",
"status": "WD"
},
"HTML4.01": {
"name": "HTML 4.01 Specification",
"url": "https://www.w3.org/TR/html401/",
"status": "REC"
},
"HTML5 W3C": {
"name": "HTML5",
"url": "https://www.w3.org/TR/html52/",
"status": "REC"
},
"HTML5.1": {
"name": "HTML 5.1",
"url": "https://www.w3.org/TR/html51/",
"status": "REC"