This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 200
/
status.json
5861 lines (5861 loc) · 200 KB
/
status.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
[
{
"name": "Secure Contexts",
"category": "Security",
"link": "https://www.w3.org/TR/secure-contexts/",
"summary": "As the web enables more powerful apps, features which enable those apps should only be enabled in contexts which meet a specific security level. This also exposes the APIs that identify if you’re in a secure context.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "15063"
},
"id": 6021277022158848,
"statusid": 1
},
{
"name": "Font Variation Properties with OpenType Variable Font Support",
"category": "CSS",
"link": "https://drafts.csswg.org/css-fonts-4/#font-variation-props",
"summary": "Allows multiple instances of fonts to be defined by interpolating glyph outlines along different axis.",
"standardStatus": "Editor's draft",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "17074"
},
"safari_views": {
"text": "Shipped",
"value": 1
},
"ff_views": {
"text": "In Development",
"value": 2
},
"id": 4708676673732608,
"uservoiceid": 19176292,
"statusid": 2
},
{
"name": "font-variant longhands",
"category": "CSS",
"link": "https://drafts.csswg.org/css-fonts/#font-variant-caps-prop",
"summary": "Allows authors to utilize longhand properties of font-variant-caps, font-variant-ligatures, font-variant-numeric, font-variant-alternates, font-variant-east-asian, font-variant-position for font selection and adjustments rather than utilizing lower level props such as font-feature-settings.",
"standardStatus": "Editor's draft",
"ieStatus": {
"text": "Not Supported",
"priority": "Medium"
},
"id": 5678497057996800,
"statusid": 3
},
{
"name": "From-Origin header",
"category": "Security",
"link": "https://github.com/whatwg/fetch/issues/687",
"summary": "Allows authors to send a header of a whistelisted set of domains from the server to other origins from loaded or accessing the content",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Medium"
},
"statusid": 4
},
{
"name": "Same-site cookies",
"category": "Security",
"link": "https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site-00",
"summary": "Defines a SameSite attribute, allowing a server to specify that cookies should not be sent with cross-site requests. NOTE: IE11 on build 16299+ also support this feature if all updates are applied to the OS",
"standardStatus": "Editor's draft",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "16299"
},
"ff_views": {
"text": "Shipped",
"value": 1
},
"id": 4672634709082112,
"statusid": 5
},
{
"name": "SVG Accessibility API Mappings",
"category": "Misc",
"link": "https://www.w3.org/TR/svg-aam-1.0/",
"summary": "Defines how user agents map SVG markup to platform accessibility application programming interfaces.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "17763"
},
"statusid": 6
},
{
"name": "Digital Publishing Accessibility API Mappings",
"category": "Misc",
"link": "https://www.w3.org/TR/dpub-aam-1.0/",
"summary": "Defines how user agents map the Digital Publishing WAI-ARIA Module markup to platform accessibility APIs.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Under Consideration",
"priority": "Medium"
},
"safari_views": {
"text": "Shipped",
"value": 1
},
"ff_views": {
"text": "Enabled by default",
"value": 2
},
"statusid": 7
},
{
"name": "-webkit-text-stroke",
"category": "CSS",
"link": "https://compat.spec.whatwg.org/#the-webkit-text-stroke",
"summary": "The -webkit-text-stroke property sets the stroke width and color of an element’s text.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "In Development"
},
"safari_views": {
"text": "Shipped",
"value": 1
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Enabled by default",
"value": 2
},
"shipped_opera_milestone": true,
"msdn": "https://developer.mozilla.org/docs/Web/CSS/-webkit-text-stroke",
"statusid": 8
},
{
"name": "WebVR",
"category": "Graphics",
"link": "https://w3c.github.io/webvr/",
"summary": "Support for Virtual Reality applications on the web using head-mounted displays. The WebVR 1.1 API is fully supported in Microsoft Edge. Viewing WebVR content requires a Windows Mixed Reality headset, or the Windows Mixed Reality Portal Simulator (accessible via Developer Mode in the Windows 10 Creators Update).",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "15002"
},
"id": 4532810371039232,
"msdn": "https://developer.mozilla.org/docs/Web/API/WebVR_API",
"uservoiceid": 7119843,
"statusid": 9
},
{
"name": "requestIdleCallback",
"category": "Performance",
"link": "https://www.w3.org/TR/requestidlecallback/",
"summary": "Allows developers to cooperatively schedule background tasks to avoid introducing delays with high priority tasks in the same event loop.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Medium"
},
"spec": "requestidlecallback",
"msdn": "https://developer.mozilla.org/docs/Web/API/Window/requestIdleCallback",
"id": 5572795866021888,
"statusid": 10
},
{
"name": "Support CSS transforms on SVG",
"category": "Graphics",
"link": "https://drafts.csswg.org/css-transforms/",
"summary": "Enable support for CSS transforms on elements and presentational attributes of SVG",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "17074"
},
"safari_views": {
"text": "Shipped",
"value": 1
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Enabled by default",
"value": 2
},
"shipped_opera_milestone": true,
"uservoiceid": 257854,
"statusid": 11
},
{
"name": "CSS resize",
"category": "Graphics",
"link": "https://drafts.csswg.org/css-ui/#resize",
"summary": "Allows one to specify whether or not an element is resizable by the user, and if so, along which axis/axes",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Low"
},
"safari_views": {
"text": "Shipped",
"value": 1
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Enabled by default",
"value": 2
},
"shipped_opera_milestone": true,
"uservoiceid": 6513977,
"statusid": 12
},
{
"name": "CSS outline-offset",
"category": "Graphics",
"link": "https://drafts.csswg.org/css-ui/#outline-offset",
"summary": "Allows you to define an offset from the border box for your outline",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "15042"
},
"safari_views": {
"text": "Shipped",
"value": 1
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Enabled by default",
"value": 2
},
"shipped_opera_milestone": true,
"msdn": "https://developer.mozilla.org/docs/Web/CSS/outline-offset",
"uservoiceid": 6517094,
"statusid": 13
},
{
"name": "Frame Timing",
"category": "Performance",
"link": "https://www.w3.org/TR/frame-timing/",
"summary": "An interface for web applications to access runtime performance information of the browser event loop.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Low"
},
"spec": "frame-timing",
"msdn": "https://developer.mozilla.org/docs/Web/API/PerformanceFrameTiming",
"id": 5558926443544576,
"statusid": 14
},
{
"name": "Performance Observer",
"category": "Performance",
"link": "https://w3c.github.io/performance-timeline/#the-performanceobserver-interface",
"summary": "An interface to observe the performance timeline (https://w3c.github.io/performance-timeline) and receive notifications of new performance entries as they are recorded.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Medium"
},
"spec": "performance-timeline-2",
"msdn": "https://developer.mozilla.org/docs/Web/API/PerformanceObserver",
"id": 5945504202489856,
"statusid": 15
},
{
"name": "CSS Containment",
"category": "Performance",
"link": "https://drafts.csswg.org/css-containment/",
"summary": "A primitive for isolating style, layout, and paint. This will allow web developers to opt into the various aspects of the pipeline, allowing for UA optimizations.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Low"
},
"id": 6522186978295808,
"statusid": 16
},
{
"name": "Initial Letter",
"category": "CSS",
"link": "https://drafts.csswg.org/css-inline/#sizing-drop-initials",
"summary": "Allows the author to set the size and depth at which it sinks into the surrounding text.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Low"
},
"safari_views": {
"text": "Shipped",
"value": 1
},
"statusid": 17
},
{
"name": "Intersection Observer",
"category": "Performance",
"link": "https://wicg.github.io/IntersectionObserver/",
"summary": "An interface to allow a web developer to asynchronously query the position of an element with respect to other elements or the global viewport.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "14986"
},
"spec": "intersection-observer",
"msdn": "https://developer.mozilla.org/docs/Web/API/IntersectionObserver",
"id": 5695342691483648,
"statusid": 18
},
{
"name": "Resize Observer",
"category": "Performance",
"link": "https://wicg.github.io/ResizeObserver/",
"summary": "Allows a web developer to attach an observer to an element and a callback will be fired when that element is resized",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Low"
},
"id": 5705346022637568,
"statusid": 19
},
{
"name": "Server Timing",
"category": "Performance",
"link": "https://www.w3.org/TR/server-timing/",
"summary": "Enables the server to communicate request-response cycle metrics to the user agent, and provides a JavaScript interface to enable applications to access and act on those metrics.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Low"
},
"spec": "server-timing",
"statusid": 20
},
{
"name": "Preload",
"category": "Performance",
"link": "https://www.w3.org/TR/preload/",
"summary": "A keyword that may be used with \"link\" elements which provides a declarative fetch primitive that initiates an early fetch and separates fetching from resoruce execution.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Medium"
},
"id": 5757468554559488,
"uservoiceid": 7666725,
"statusid": 21
},
{
"name": "DNS Prefetch Resource Hints",
"category": "Performance",
"link": "https://www.w3.org/TR/resource-hints/#dns-prefetch",
"summary": "A link relation type used to indicate an origin that will be used to fetch required resources and that the browser should resolve as early as possible.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "11"
},
"spec": "resource-hints",
"msdn": "https://developer.mozilla.org/docs/Web/HTTP/Link_prefetching_FAQ",
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Enabled by default",
"value": 2
},
"shipped_opera_milestone": true,
"safari_views": {
"text": "No public signals",
"value": 2
},
"statusid": 22
},
{
"name": "Preconnect Resource Hints",
"category": "Performance",
"link": "https://www.w3.org/TR/resource-hints/#preconnect",
"summary": "A link relation type used to indicate an origin that will be used to fetch required resources, so the browser can open a connection early for resouces that will be required later in the loading process.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Not Supported",
"priority": "Medium"
},
"spec": "resource-hints",
"msdn": "https://developer.mozilla.org/docs/Web/HTML/Link_types",
"id": 5560623895150592,
"statusid": 23
},
{
"name": "High Resolution Time 2",
"category": "Performance",
"link": "https://www.w3.org/TR/hr-time-2/",
"summary": "An API that provides translation of the current sub-millisecond resolution time between origins.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "14393"
},
"spec": "hr-time-2",
"msdn": "https://developer.mozilla.org/docs/Web/API/Performance",
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Enabled by default",
"value": 2
},
"shipped_opera_milestone": true,
"safari_views": {
"text": "No public signals",
"value": 2
},
"statusid": 24
},
{
"name": "High Resolution Time 3",
"category": "Performance",
"link": "https://www.w3.org/TR/hr-time-3/",
"summary": "Adds performance.timeOrigin, allowing DOMHighResTimeStamps from separate Windows to be interleaved into a single timeline.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "16299"
},
"msdn": "https://developer.mozilla.org/docs/Web/API/Performance",
"spec": "hr-time-3",
"statusid": 25
},
{
"name": "Brotli Compressed Data Format",
"category": "Network / Connectivity",
"link": "https://tools.ietf.org/html/rfc7932",
"summary": "Support for the Brotli data format as an HTTP content-encoding method.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "14986"
},
"uservoiceid": 11364771,
"msdn": "https://developer.mozilla.org/docs/Web/HTTP/Headers/Content-Encoding#Directives",
"id": 5420797577396224,
"statusid": 26
},
{
"name": "<datalist> Element",
"category": "User input",
"link": "https://html.spec.whatwg.org/multipage/form-elements.html#the-datalist-element",
"summary": "Shows a list of pre-defined options to suggest to the user when entering an input element.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10"
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/HTML/Element/datalist",
"id": 6090950820495360,
"statusid": 27
},
{
"name": "Credential Management API",
"category": "Security",
"link": "https://w3c.github.io/webappsec-credential-management/",
"summary": "Credential Management API describes an imperative API enabling a website to request a user’s credentials from a user agent, and to help the user agent correctly store user credentials for future use. For EdgeHTML, only WebAuthn is supported.",
"standardStatus": "Editor's draft",
"ieStatus": {
"text": "Partial Support"
},
"msdn": "https://developer.mozilla.org/docs/Web/API/Credential_Management_API",
"id": 5026422640869376,
"statusid": 28
},
{
"name": "Web Authentication API",
"category": "Security",
"link": "https://w3c.github.io/webauthn/",
"summary": "Web Authentication provides an open, scalable, and interoperable solution to facilitate authentication, which replaces passwords with stronger hardware-bound credentials. The implementation in Microsoft Edge allows users to use Windows Hello (via PIN or biometrics) and external authenticators like FIDO2 Security Keys or FIDO U2F Security Keys, to securely authenticate to websites. This updates our previous implementation to match the updated spec and to be unprefixed and enabled by default.",
"standardStatus": "Editor's draft",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "17763"
},
"impl_status_chrome": "Shipped",
"ff_views": {
"text": "Shipped",
"value": 1
},
"spec": "webauthn",
"statusid": 29
},
{
"name": "FIDO U2F",
"category": "Security",
"link": "https://fidoalliance.org/specifications/overview/",
"summary": "FIDO Universal Second Factor API allows online services to augment the security of their existing password infrastructure by adding a strong second factor to user login via a USB or NFC device. Also see FIDO 2.0 Web APIs, a newer specification that supports additional authentication methods, such as biometrics, and can replace passwords altogether as well as provide U2F functionality.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Not currently planned"
},
"ff_views": {
"text": "Behind a flag",
"value": 2
},
"shipped_opera_milestone": true,
"safari_views": {
"text": "No public signals",
"value": 1
},
"id": 6413248798654464,
"statusid": 30
},
{
"name": "<details>/<summary>",
"category": "Misc",
"link": "https://html.spec.whatwg.org/multipage/interactive-elements.html#the-details-element",
"summary": "Interactive widget to show/hide content. NOTE: A first implementation landed in some Preview builds of Edge, but we had to pull it off due to quality issues.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Not Supported",
"priority": "High"
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/HTML/Element/details",
"id": 5348024557502464,
"uservoiceid": 6261266,
"statusid": 31
},
{
"name": "webkitdirectory and webkitRelativePath",
"category": "File APIs",
"summary": "Support for the webkitdirectory attribute on the input tag to make it allow a directory be selected instead of files. Support for the webkitRelativePath property on the File interface to allow the identification of relative paths of files.",
"standardStatus": "No public standards discussion",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "14306"
},
"impl_status_chrome": "Enabled by default",
"shipped_opera_milestone": true,
"msdn": "https://developer.mozilla.org/docs/Web/API/HTMLInputElement/webkitdirectory",
"statusid": 32
},
{
"name": "Directory Upload",
"category": "File APIs",
"link": "https://wicg.github.io/directory-upload/proposal.html",
"summary": "Enable directory uploading by allowing a developer to read directory contents (files and sub-directories) asynchronously and be able to identify the directory structure. For EdgeHTML, more information about the webkitdirectory attribute can be found here: https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Partial Support",
"priority": "Medium"
},
"spec": "file-system-api",
"msdn": "https://developer.mozilla.org/docs/Web/API/File_and_Directory_Entries_API",
"statusid": 33
},
{
"name": "<img srcset>",
"category": "Graphics",
"link": "https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-srcset",
"summary": "Enable a responsive images solution by providing the browser multiple resources in varying resolutions for a single image.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10240"
},
"safari_views": {
"text": "Shipped",
"value": 1
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/HTML/Element/img#attr-srcset",
"id": 4644337115725824,
"uservoiceid": 6261267,
"statusid": 34
},
{
"name": "Extended srcset and sizes support",
"category": "Graphics",
"link": "https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-srcset",
"summary": "Extends the current implementation of the srcset attribute by adding support for the width descriptor and the sizes attribute.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10547"
},
"safari_views": {
"text": "Shipped",
"value": 1
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Shipped",
"value": 1
},
"shipped_opera_milestone": true,
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/HTML/Element/img#attr-sizes",
"id": 4644337115725824,
"uservoiceid": 8204535,
"statusid": 35
},
{
"name": "<picture> Element",
"category": "Graphics",
"link": "https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element",
"summary": "Enable a responsive images solution by declaring multiple resources for an image using CSS media queries.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10547"
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/HTML/Element/picture",
"id": 5910974510923776,
"uservoiceid": 6261271,
"statusid": 36
},
{
"name": "<template> Element",
"category": "Web Components",
"link": "https://html.spec.whatwg.org/multipage/scripting.html#the-template-element",
"summary": "HTML template element to allow creating fragment of inert HTML as a prototype for stamping out DOM (often used in Web Components).",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10547"
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/HTML/Element/template",
"id": 5207287069147136,
"uservoiceid": 6261273,
"statusid": 37
},
{
"name": "<meter> Element",
"category": "Misc",
"link": "https://html.spec.whatwg.org/multipage/form-elements.html#the-meter-element",
"summary": "The HTML meter element allows representation of a scalar measurement of a known range, or fractional value, i.e. a gauge. Distinct from the progress element.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10532"
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Shipped",
"value": 1
},
"shipped_opera_milestone": true,
"safari_views": {
"text": "Shipped",
"value": 1
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/HTML/Element/meter",
"uservoiceid": 6514198,
"statusid": 38
},
{
"name": "selectionDirection attribute on text input elements",
"category": "User input",
"link": "https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-textarea/input-selectiondirection",
"summary": "Returns the string corresponding to the current selection direction on text input elements: \"forward\", \"backward\", or \"none\".",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10532"
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Shipped",
"value": 1
},
"shipped_opera_milestone": true,
"safari_views": {
"text": "Shipped",
"value": 1
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/API/HTMLInputElement",
"uservoiceid": 8679412,
"statusid": 39
},
{
"name": "oninvalid event handler",
"category": "User input",
"link": "https://html.spec.whatwg.org/multipage/indices.html#event-invalid",
"summary": "Provides specified alert text if an input element is invalid.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10532"
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Shipped",
"value": 1
},
"shipped_opera_milestone": true,
"safari_views": {
"text": "Shipped",
"value": 1
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/Events/invalid",
"statusid": 40
},
{
"name": "Canvas 2D ellipse",
"category": "Graphics",
"link": "https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-ellipse",
"summary": "Provides a method to draw arcs on a 2D canvas drawing surface.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10547"
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "No public signals",
"value": 5
},
"shipped_opera_milestone": true,
"safari_views": {
"text": "Preview Release",
"value": 1
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/ellipse",
"statusid": 41
},
{
"name": "Canvas 2D Path2D",
"category": "Graphics",
"link": "https://html.spec.whatwg.org/multipage/canvas.html#path2d-objects",
"summary": "Path2D objects can be used to declare paths that are then later used on CanvasRenderingContext2D objects.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "14316"
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Shipped",
"value": 1
},
"shipped_opera_milestone": true,
"safari_views": {
"text": "Shipped",
"value": 1
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/API/Path2D",
"uservoiceid": 6710770,
"statusid": 42
},
{
"name": "CSS Range Pseudo-classes",
"category": "CSS",
"link": "https://html.spec.whatwg.org/multipage/semantics-other.html#selector-in-range",
"summary": ":in-range and :out-of-range pseudo-classes to match elements that are candidates for constraint validation, have range limitations, and are/are not suffering from underflow or overflow.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10547"
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Shipped",
"value": 1
},
"shipped_opera_milestone": true,
"safari_views": {
"text": "Shipped",
"value": 1
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/CSS/:in-range",
"statusid": 43
},
{
"name": "CSS Mutability Pseudo-classes",
"category": "CSS",
"link": "https://html.spec.whatwg.org/multipage/semantics-other.html#selector-read-only",
"summary": ":read-only and :read-write pseudo-classes to match elements which are considered user-alterable for the purposes of Selectors.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10547"
},
"impl_status_chrome": "Enabled by default",
"ff_views": {
"text": "Shipped",
"value": 1
},
"shipped_opera_milestone": true,
"safari_views": {
"text": "Shipped",
"value": 1
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/CSS/:read-only",
"statusid": 44
},
{
"name": "a[download] attribute",
"category": "File APIs",
"link": "https://html.spec.whatwg.org/multipage/links.html#downloading-resources",
"summary": "When used on an <a>, this attribute signifies that the resource it points to should be downloaded by the browser rather than navigating to it.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10547"
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/HTML/Element/a#attr-download",
"id": 6473924464345088,
"uservoiceid": 6261278,
"statusid": 45
},
{
"name": "Application Cache",
"category": "Network / Connectivity",
"link": "https://html.spec.whatwg.org/multipage/offline.html#offline",
"summary": "Enables web pages to work without the user being connected to the internet",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10"
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/API/Window/applicationCache",
"id": 6192449487634432,
"statusid": 46
},
{
"name": "Audio tracks",
"category": "Multimedia",
"link": "https://html.spec.whatwg.org/multipage/media.html#media-resources-with-multiple-media-tracks",
"summary": "Adds the ability to get information about multiple audio tracks, and switch between them using the AudioTrack.enabled attributes.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10"
},
"spec": "html",
"id": 5748496434987008,
"statusid": 47
},
{
"name": "Video tracks",
"category": "Multimedia",
"link": "https://html.spec.whatwg.org/multipage/media.html#media-resources-with-multiple-media-tracks",
"summary": "Adds the ability to get information about multiple video tracks, and switch between them using the VideoTrack.selected attributes.",
"standardStatus": "Working draft or equivalent",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10240"
},
"spec": "html",
"id": 5748496434987008,
"uservoiceid": 6261284,
"statusid": 48
},
{
"name": "Blob",
"category": "File APIs",
"link": "https://dev.w3.org/2006/webapi/FileAPI/#dfn-Blob",
"summary": "Allows you to construct Blobs directly (var blob = new Blob([\"1234\"], {type: 'text/plain'})). Blob() constructor also can take ArrayBufferView directly rather than constructing a blob with ArrayBuffer.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10"
},
"spec": "fileapi",
"msdn": "https://developer.mozilla.org/docs/Web/API/Blob",
"id": 5328783104016384,
"statusid": 49
},
{
"name": "ES6 Block bindings (let, const, function)",
"category": "JavaScript",
"link": "https://ecma-international.org/ecma-262/6.0/index.html",
"summary": "Allows developers to explicitly qualify access to variables within a block.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "11"
},
"spec": "es6",
"msdn": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/let",
"id": 5891733057437696,
"statusid": 50
},
{
"name": "Canvas",
"category": "Graphics",
"link": "https://html.spec.whatwg.org/multipage/canvas.html#the-canvas-element",
"summary": "Provides an API to draw 2D graphics",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "9"
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/HTML/Element/canvas",
"id": 5100084685438976,
"statusid": 51
},
{
"name": "Canvas focus ring",
"category": "Graphics",
"link": "https://html.spec.whatwg.org/multipage/canvas.html#drawing-focus-rings-and-scrolling-paths-into-view",
"summary": "Adds APIs to the canvas 2D context that make it possible to draw a focus ring around a canvas path and notify the operating system of the bounding box of the focused object for accessibility.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "14393"
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/drawFocusIfNeeded",
"id": 6413769152397312,
"uservoiceid": 6261287,
"statusid": 52
},
{
"name": "Compositing and Blending in Canvas 2D",
"category": "Graphics",
"link": "https://html.spec.whatwg.org/multipage/canvas.html#compositing",
"summary": "The canvas 2d context has the globalCompositeOperation attribute that is used to set the current compositing and blending operator.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10532"
},
"spec": "html",
"msdn": "https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/globalCompositeOperation",
"id": 6119881720201216,
"uservoiceid": 6261290,
"statusid": 53
},
{
"name": "Content Security Policy",
"category": "Security",
"link": "https://dvcs.w3.org/hg/content-security-policy/raw-file/tip/csp-specification.dev.html",
"summary": "Allows you to create an allow list of sources of trusted content, and instructs the browser to only execute or render resources from those sources.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "10240"
},
"spec": "csp3",
"msdn": "https://developer.mozilla.org/docs/Web/HTTP/Headers/Content-Security-Policy",
"id": 5205088045891584,
"uservoiceid": 6511917,
"statusid": 54
},
{
"name": "Content Security Policy Level 2",
"category": "Security",
"link": "https://www.w3.org/TR/CSP2/",
"summary": "An evolution of the Content Security Policy specification, allowing developers to create a whitelist of sources of trusted content, and instructing the browser to only execute or render resources from those sources.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "15002"
},
"spec": "csp2",
"msdn": "https://developer.mozilla.org/docs/Web/HTTP/Headers/Content-Security-Policy",
"id": 4957003285790720,
"uservoiceid": 9163354,
"statusid": 55
},
{
"name": "CSP Level 3 strict-dynamic source expression",
"category": "Security",
"link": "https://w3c.github.io/webappsec-csp/#strict-dynamic-usage",
"summary": "Allows script loaded via a CSP2 nonce-based or hash-based whitelist to load other script, enabling developers and site administrators to reduce their reliance on whitelists and to tighten CSP implementations.",
"standardStatus": "Editor's draft",
"ieStatus": {
"text": "Not Supported",
"priority": "Medium"
},
"id": 5633814718054400,
"statusid": 56
},
{
"name": "CSP upgrade-insecure-requests directive",
"category": "Security",
"link": "https://www.w3.org/TR/upgrade-insecure-requests/",
"summary": "Allows a server to instruct the user agent to upgrade insecure requests via a Content-Security-Policy header. This directive is meant to make it even easier for a site administrator to move towards using all secure transports, while avoiding having to make massive updates to URLs in their web applications.",
"standardStatus": "Established standard",
"ieStatus": {
"text": "Shipped",
"ieUnprefixed": "17134"
},
"id": 6534575509471232,
"uservoiceid": 7314353,
"statusid": 57
},
{
"name": "CSS calc()",
"category": "CSS",
"link": "https://www.w3.org/TR/css3-values",
"summary": "Method of allowing calculated values for length units, i.e. width: calc(100% - 3em)",
"standardStatus": "Established standard",