-
Notifications
You must be signed in to change notification settings - Fork 13
/
tracking.json
5843 lines (5843 loc) · 149 KB
/
tracking.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
{
"title": "WICG Tracking",
"sheets": [
{
"title": "In Progress",
"headerValues": [
"Repository",
"Link",
"Category",
"Potential WG",
"Next Step",
"Initiator",
"Impl. Sponsor",
"Spec Sponsor",
"Date last reviewed",
"Discourse thread/issue link",
"Repo-manager",
"Announced on [email protected]",
"Date Added",
"Shipping in",
"Mozilla position",
"Description"
],
"sheedId": 0,
"rows": [
[
"aom",
"https://github.com/WICG/aom",
"Accessibility",
"ARIA WG",
"",
"alice",
"",
"Google",
"",
"",
"yes",
"n/a",
"",
"",
"",
"Accessibility Object Model"
],
[
"https://github.com/WICG/accessible-loading-and-searching-of-content",
"https://github.com/WICG/accessible-loading-and-searching-of-content",
"Accessibility",
"ARIA WG",
"Reach out to contributors to get latest status",
"travis",
"",
"Microsoft",
"2/9/2022",
"",
"yes",
"n/a",
"September 27, 2019",
"",
"https://github.com/mozilla/standards-positions/issues/161",
"Enable ATs to recognize and account for virtualized content when navigating a web page."
],
[
"audio-focus",
"https://github.com/WICG/audio-focus",
"Media",
"Media WG",
"Reach out to contributors to get latest status",
"mounir",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"https://github.com/mozilla/standards-positions/issues/203"
],
[
"background-fetch",
"https://github.com/WICG/background-fetch",
"Networking",
"SW WG or WHATWG",
"Potential to upstream to SW WG",
"Jake",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"API proposal for background downloading/uploading"
],
[
"BackgroundSync",
"https://github.com/WICG/BackgroundSync",
"Networking",
"SW WG",
"Working through Privacy concerns",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"https://github.com/mozilla/standards-positions/issues/214",
"A design and spec for ServiceWorker-based background synchronization"
],
[
"canvas-color-space",
"https://github.com/WICG/canvas-color-space",
"Graphics",
"WHATWG?",
"We pinged people again",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"Proposed web platform feature to add color management wide gamut and high bit-depth support to the <canvas> element."
],
[
"https://github.com/WICG/construct-stylesheets",
"https://github.com/WICG/construct-stylesheets",
"Layout",
"CSSWG",
"Mozilla poised to implement",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"Chromium",
"",
"API for constructing CSS stylesheet objects"
],
[
"container-queries",
"https://github.com/WICG/container-queries",
"Layout",
"",
"Reach out to contributors to get latest status (last major update 2015?)",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a"
],
[
"controls-list",
"https://github.com/WICG/controls-list",
"Media",
"MadiaWG",
"Reach out to contributors to get latest status (maybe coordinate with OpenUI?)",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"Customise browser native media controls buttons."
],
[
"cookie-store",
"https://github.com/WICG/cookie-store",
"Storage",
"WebAppsWG",
"Appears actively maintained",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"Chrome",
"",
"Sketching an asynchronous JavaScript cookies API for documents and workers"
],
[
"private-network-access",
"https://github.com/WICG/private-network-access",
"Security",
"WebAppSec?",
"Appears actively maintained",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a"
],
[
"cq-usecases",
"https://github.com/WICG/cq-usecases",
"Layout",
"",
"Reach out for latest update (needed separate repo?)",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"Use cases and requirements for standardizing element queries."
],
[
"CSS-Parser-API",
"https://github.com/WICG/CSS-Parser-API",
"Layout",
"",
"Reach out for latest update (Looks like a Houdini spec?)",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"This is the repo where the CSS Houdini parser API will be worked on"
],
[
"https://github.com/WICG/datacue",
"https://github.com/WICG/DataCue",
"Media",
"",
"Appears actively maintained",
"cwilso",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"March 14, 2019",
"",
"",
"https://github.com/chrisn/datacue/blob/master/explainer.md"
],
[
"devtools-protocol",
"https://github.com/WICG/devtools-protocol",
"Testing",
"",
"Reach out to contributors to get latest status",
"",
"",
"Microsoft",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"DevTools Protocol"
],
[
"display-locking",
"https://github.com/WICG/display-locking",
"Layout",
"WebAppsWG?",
"Appears actively maintained",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"A repository for the Display Locking spec"
],
[
"Element-Timing",
"https://github.com/WICG/Element-Timing",
"Performance",
"WebPerfWG",
"Appears actively maintained (when will this transition to Perf WG?)",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"https://github.com/mozilla/standards-positions/issues/192",
"Element Timing performance metric proposal"
],
[
"encrypted-media",
"https://github.com/WICG/encrypted-media",
"Media",
"MediaWG",
"Reach out to contributors to get latest status (update this fork?)",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"A fork of Encrypted Media Extensions to add persistent-usage-record sessions"
],
[
"entries-api",
"https://github.com/WICG/entries-api",
"Sharing",
"WebAppsWG",
"Reach out to contributors to get latest status",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"Spec defining browser support for file/directory upload by drag-and-drop"
],
[
"event-timing",
"https://github.com/WICG/event-timing",
"Performance",
"WebPerfWG",
"Appears actively maintained",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"A proposal for an Event Timing specification"
],
[
"file-handling",
"https://github.com/WICG/file-handling",
"Sharing",
"WebAppsWG",
"Appears actively maintained",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"API for web applications to handle files"
],
[
"focus-visible",
"https://github.com/WICG/focus-visible",
"Accessibility",
"CSS?",
"Reach out and get usage stats--will the polyfil be needed for much longer?",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"Polyfill for `:focus-visible`"
],
[
"get-installed-related-apps",
"https://github.com/WICG/get-installed-related-apps",
"Sharing",
"WebAppsWG",
"Reach out to contributors to get latest status",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"https://github.com/mozilla/standards-positions/issues/213"
],
[
"hdcp-detection",
"https://github.com/WICG/hdcp-detection",
"Media",
"",
"Reach out to contributors to get latest status",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"Incubation for HDCP detection feature in EME"
],
[
"import-maps",
"https://github.com/WICG/import-maps",
"Networking",
"",
"Appears actively maintained",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"How to control the behavior of JavaScript imports"
],
[
"indexed-db-observers",
"https://github.com/WICG/indexed-db-observers",
"Storage",
"WebAppWG",
"Waiting for non-Chromium interest?",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"Prototyping and discussion around indexeddb observers."
],
[
"inert",
"https://github.com/WICG/inert",
"Layout",
"",
"Reach out to contributors to get latest status (heading for WHATWG upstream?)",
"",
"",
"",
"2/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"Polyfill for the inert attribute and property."
],
[
"https://github.com/WICG/input-for-workers",
"https://github.com/WICG/input-for-workers",
"Input",
"",
"DORMANT",
"yoav",
"",
"",
"8/1/2022",
"",
"yes",
"n/a",
"August 30, 2019",
"",
"",
"Specification for exposing input events to workers"
],
[
"Input-device-capabilities",
"https://github.com/WICG/Input-device-capabilities",
"Sharing",
"",
"Reach out to contributors to get latest status",
"",
"",
"",
"3/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"InputDevice API proposal"
],
[
"interventions",
"https://github.com/WICG/interventions",
"Meta",
"WebAppsWG",
"Wondering if this should move to Web Apps; ask contributors for latest status",
"",
"",
"",
"3/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"A place for browsers and web developers to collaborate on user agent interventions."
],
[
"is-input-pending",
"https://github.com/WICG/is-input-pending",
"Input",
"WebPerfWG",
"Shipped in Chromium; Waiting for other implementer interest",
"",
"",
"",
"3/9/2022",
"",
"yes",
"n/a"
],
[
"https://github.com/WICG/js-self-profiling",
"https://github.com/WICG/js-self-profiling",
"Performance",
"WebPerfWG",
"Shipped in Chromium; Recent updates; waiting for other implementer interest",
"yoav",
"",
"Facebook",
"3/9/2022",
"",
"yes",
"n/a",
"March 12, 2019",
"",
"",
"JS profiling in the wild"
],
[
"keyboard-map",
"https://github.com/WICG/keyboard-map",
"Input",
"WebEditingWG?",
"Appears actively maintained",
"",
"",
"",
"3/9/2022",
"",
"yes",
"n/a",
"",
"",
"",
"API to get current keyboard mapping."
],
[
"https://github.com/WICG/layout-instability",
"https://github.com/WICG/Layout Instability",
"Layout",
"WebPerfWG",
"",
"yoav",
"",
"",
"",
"",
"yes",
"n/a",
"May 28th, 2019"
],
[
"https://github.com/WICG/main-thread-scheduling",
"https://github.com/WICG/main-thread-scheduling",
"Performance",
"WebPerfWG",
"",
"yoav",
"",
"",
"",
"",
"yes",
"n/a",
"March 14, 2019"
],
[
"netinfo",
"https://github.com/WICG/netinfo",
"Networking",
"DAS",
"",
"",
"",
"",
"",
"",
"yes",
"n/a"
],
[
"https://github.com/WICG/open-ui",
"https://github.com/WICG/open-ui",
"Input",
"",
"",
"Greg Whitworth ",
"",
"Microsoft",
"",
"",
"yes",
"n/a",
"September 30, 2019",
"",
"",
"Standardize controls and components that ship natively within UAs."
],
[
"origin-policy",
"https://github.com/WICG/origin-policy",
"Security",
"",
"",
"",
"",
"",
"",
"",
"yes",
"n/a"
],
[
"https://github.com/WICG/overscroll-scrollend-events",
"https://github.com/WICG/overscroll-scrollend-events",
"Input",
"",
"",
"yoav",
"",
"",
"",
"",
"yes",
"n/a",
"June 11th, 2019"
],
[
"page-lifecycle",
"https://github.com/WICG/page-lifecycle",
"Performance",
"WebPerfWG",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"Lifecycle API to support system initiated discarding and freezing"
],
[
"permissions-request",
"https://github.com/WICG/permissions-request",
"Sharing",
"WebAppSec",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"Incubation for permissions.request()"
],
[
"permissions-revoke",
"https://github.com/WICG/permissions-revoke",
"Sharing",
"WebAppSec",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"Incubation for permissions.revoke()"
],
[
"portals",
"https://github.com/WICG/portals",
"Performance",
"",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"A proposal for enabling seamless navigations between sites or pages"
],
[
"priority-hints",
"https://github.com/WICG/priority-hints",
"Performance",
"WebPerfWG",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"A browser API to enable developers signal the priorities of the resources they need to download"
],
[
"sanitizer-api",
"https://github.com/WICG/sanitizer-api",
"Security",
"",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"https://github.com/mozilla/standards-positions/issues/106"
],
[
"https://github.com/WICG/requestPostAnimationFrame",
"https://github.com/WICG/requestPostAnimationFrame",
"Performance",
"HTML",
"",
"yoav",
"",
"",
"",
"",
"yes",
"n/a",
"May 2nd, 2019"
],
[
"https://github.com/WICG/savedata",
"https://github.com/WICG/savedata",
"Performance",
"",
"",
"yoav",
"",
"",
"",
"",
"yes",
"n/a",
"September 6th, 2019",
"Chromium",
"",
"A browser API to make developers aware of user preferences with regards to data savings"
],
[
"https://github.com/WICG/ScrollToTextFragment",
"https://github.com/WICG/Scroll-to-text-fragment",
"Layout",
"",
"",
"yoav",
"",
"Google",
"",
"",
"yes",
"n/a",
"July 23rd, 2019",
"",
"https://github.com/mozilla/standards-positions/issues/194"
],
[
"serial",
"https://github.com/WICG/serial",
"Sharing",
"DAS",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"Serial ports API for the platform."
],
[
"shape-detection-api",
"https://github.com/WICG/shape-detection-api",
"Media",
"DAS",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"Detection of shapes (faces QR codes) in images"
],
[
"spatial-navigation",
"https://github.com/WICG/spatial-navigation",
"Accessibility",
"",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"Directional focus navigation with arrow keys"
],
[
"sw-launch",
"https://github.com/WICG/sw-launch",
"Sharing",
"ServiceWorkerWG",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"Service Worker Launch Event"
],
[
"trusted-types",
"https://github.com/WICG/trusted-types",
"Security",
"",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"A browser API that aims to prevent DOM-Based Cross Site Scripting in modern web applications."
],
[
"ua-client-hints",
"https://github.com/WICG/ua-client-hints",
"Networking",
"",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"Wouldn't it be nice if `User-Agent` was a (set of) client hints?"
],
[
"https://github.com/WICG/virtual-scroller",
"https://github.com/WICG/Virtual Scroller",
"Input",
"",
"",
"yoav",
"",
"",
"",
"",
"yes",
"n/a",
"April 19,2019"
],
[
"visual-viewport",
"https://github.com/WICG/visual-viewport",
"Layout",
"",
"",
"",
"",
"",
"",
"",
"yes",
"n/a",
"",
"",
"",
"A proposal to add explicit APIs to the Web for querying and setting the visual viewport"
],
[
"web-locks",
"https://github.com/WICG/web-locks",
"Sharing",
"",
"",