-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathspecdata.json
More file actions
2589 lines (2589 loc) Β· 112 KB
/
specdata.json
File metadata and controls
2589 lines (2589 loc) Β· 112 KB
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
[
{
"spec_url": "https://console.spec.whatwg.org/",
"spec_name": "Console",
"repo_url": "https://github.com/whatwg/console/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Console_API",
"caniuse_url": "https://caniuse.com/?search=console",
"tests_url": "https://wpt.fyi/results/console",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Debugging and reporting"
},
{
"spec_url": "https://dom.spec.whatwg.org/",
"spec_name": "DOM",
"repo_url": "https://github.com/whatwg/dom/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model",
"caniuse_url": "https://caniuse.com/?search=dom",
"tests_url": "https://wpt.fyi/results/dom",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Core"
},
{
"spec_url": "https://encoding.spec.whatwg.org/",
"spec_name": "Encoding",
"repo_url": "https://github.com/whatwg/encoding/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Encoding_API",
"caniuse_url": "https://caniuse.com/?search=textencoder",
"tests_url": "https://wpt.fyi/results/encoding",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Core"
},
{
"spec_url": "https://fetch.spec.whatwg.org/",
"spec_name": "Fetch",
"repo_url": "https://github.com/whatwg/fetch/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API",
"caniuse_url": "https://caniuse.com/fetch",
"tests_url": "https://wpt.fyi/results/fetch",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Core"
},
{
"spec_url": "https://fs.spec.whatwg.org/",
"spec_name": "File System",
"repo_url": "https://github.com/whatwg/fs/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API",
"caniuse_url": "https://caniuse.com/native-filesystem-api",
"tests_url": "https://wpt.fyi/results/fs",
"engines": ["blink"],
"spec_category": "Storage and files"
},
{
"spec_url": "https://fullscreen.spec.whatwg.org/",
"spec_name": "Fullscreen API",
"repo_url": "https://github.com/whatwg/fullscreen/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Fullscreen_API",
"caniuse_url": "https://caniuse.com/fullscreen",
"tests_url": "https://wpt.fyi/results/fullscreen",
"engines": ["gecko", "blink"],
"spec_category": "Platform interaction"
},
{
"spec_url": "https://html.spec.whatwg.org/multipage/",
"spec_name": "HTML",
"repo_url": "https://github.com/whatwg/html/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/HTML_DOM_API",
"caniuse_url": "https://caniuse.com/?search=HTML",
"tests_url": "https://wpt.fyi/results/html",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Core"
},
{
"spec_url": "https://notifications.spec.whatwg.org/",
"spec_name": "Notifications API",
"repo_url": "https://github.com/whatwg/notifications/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Notifications_API",
"caniuse_url": "https://caniuse.com/notifications",
"tests_url": "https://wpt.fyi/results/notifications",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Platform interaction"
},
{
"spec_url": "https://storage.spec.whatwg.org/",
"spec_name": "Storage",
"repo_url": "https://github.com/whatwg/storage/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Storage_API",
"caniuse_url": "https://caniuse.com/?search=storagemanager",
"tests_url": "https://wpt.fyi/results/storage",
"engines": ["blink"],
"spec_category": "Storage and files"
},
{
"spec_url": "https://streams.spec.whatwg.org/",
"spec_name": "Streams",
"repo_url": "https://github.com/whatwg/streams/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Streams_API",
"caniuse_url": "https://caniuse.com/streams",
"tests_url": "https://wpt.fyi/results/streams",
"engines": ["gecko", "blink"],
"spec_category": "Core"
},
{
"spec_url": "https://url.spec.whatwg.org/",
"spec_name": "URL",
"repo_url": "https://github.com/whatwg/url/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/URL_API",
"caniuse_url": "https://caniuse.com/url",
"tests_url": "https://wpt.fyi/results/url",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "HTTP and addressing"
},
{
"spec_url": "https://websockets.spec.whatwg.org/",
"spec_name": "WebSockets",
"repo_url": "https://github.com/whatwg/websockets/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API",
"caniuse_url": "https://caniuse.com/websockets",
"tests_url": "https://wpt.fyi/results/websockets",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Real-time communication"
},
{
"spec_url": "https://xhr.spec.whatwg.org/",
"spec_name": "XMLHttpRequest",
"repo_url": "https://github.com/whatwg/xhr/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest",
"caniuse_url": "https://caniuse.com/?search=XMLHttpRequest",
"tests_url": "https://wpt.fyi/results/xhr",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Core"
},
{
"spec_url": "https://immersive-web.github.io/anchors/",
"spec_name": "WebXR Anchors",
"repo_url": "https://github.com/immersive-web/anchors/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRAnchor",
"caniuse_url": "https://caniuse.com/mdn-api_xranchor",
"tests_url": "https://wpt.fyi/results/webxr/anchors",
"engines": ["blink"],
"spec_category": "Mixed reality"
},
{
"spec_url": "https://immersive-web.github.io/depth-sensing/",
"spec_name": "WebXR Depth Sensing",
"repo_url": "https://github.com/immersive-web/depth-sensing/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRDepthInformation",
"caniuse_url": "https://caniuse.com/mdn-api_xrdepthinformation",
"tests_url": "https://wpt.fyi/results/webxr/depth-sensing",
"engines": ["blink"],
"spec_category": "Mixed reality"
},
{
"spec_url": "https://immersive-web.github.io/dom-overlays/",
"spec_name": "WebXR DOM Overlays",
"repo_url": "https://github.com/immersive-web/dom-overlays/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRSession/domOverlayState",
"caniuse_url": "https://caniuse.com/mdn-api_xrsession_domoverlaystate",
"tests_url": "https://wpt.fyi/results/webxr/dom-overlay",
"engines": ["blink"],
"spec_category": "Mixed reality"
},
{
"spec_url": "https://immersive-web.github.io/webxr-hand-input/",
"spec_name": "WebXR Hand Input",
"repo_url": "https://github.com/immersive-web/webxr-hand-input/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRHand",
"tests_url": "https://wpt.fyi/results/webxr/hand-input",
"engines": [],
"spec_category": "Mixed reality"
},
{
"spec_url": "https://immersive-web.github.io/hit-test/",
"spec_name": "WebXR Hit Test",
"repo_url": "https://github.com/immersive-web/hit-test/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRHitTestSource",
"caniuse_url": "https://caniuse.com/mdn-api_xrhittestsource",
"tests_url": "https://wpt.fyi/results/webxr/hit-test",
"engines": ["blink"],
"spec_category": "Mixed reality"
},
{
"spec_url": "https://immersive-web.github.io/lighting-estimation/",
"spec_name": "WebXR Lighting Estimation API",
"repo_url": "https://github.com/immersive-web/lighting-estimation/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRLightEstimate",
"caniuse_url": "https://caniuse.com/mdn-api_xrlightestimate",
"tests_url": "https://wpt.fyi/results/webxr/light-estimation",
"engines": ["blink"],
"spec_category": "Mixed reality"
},
{
"spec_url": "https://immersive-web.github.io/layers/",
"spec_name": "WebXR Layers API",
"repo_url": "https://github.com/immersive-web/layers/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRWebGLBinding",
"caniuse_url": "https://caniuse.com/mdn-api_xrwebglbinding",
"tests_url": "https://wpt.fyi/results/webxr/layers",
"engines": ["blink"],
"spec_category": "Mixed reality"
},
{
"spec_url": "https://immersive-web.github.io/webxr/",
"spec_name": "WebXR Device API",
"repo_url": "https://github.com/immersive-web/webxr/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/WebXR_Device_API",
"caniuse_url": "https://caniuse.com/webxr",
"tests_url": "https://wpt.fyi/results/webxr",
"engines": ["blink"],
"spec_category": "Mixed reality"
},
{
"spec_url": "https://immersive-web.github.io/webxr-ar-module/",
"spec_name": "WebXR Augmented Reality",
"repo_url": "https://github.com/immersive-web/webxr-ar-module/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRSession/environmentBlendMode",
"caniuse_url": "https://caniuse.com/mdn-api_xrsession_environmentblendmode",
"tests_url": "https://wpt.fyi/results/webxr/ar-module",
"engines": ["blink"],
"spec_category": "Mixed reality"
},
{
"spec_url": "https://immersive-web.github.io/webxr-gamepads-module/",
"spec_name": "WebXR Gamepads",
"repo_url": "https://github.com/immersive-web/webxr-gamepads-module/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/XRInputSource/gamepad",
"caniuse_url": "https://caniuse.com/mdn-api_xrinputsource_gamepad",
"tests_url": "https://wpt.fyi/results/webxr/gamepads-module",
"engines": ["blink"],
"spec_category": "Mixed reality"
},
{
"spec_url": "https://privacycg.github.io/storage-access/",
"spec_name": "Storage Access API",
"repo_url": "https://github.com/privacycg/storage-access/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Storage_Access_API",
"caniuse_url": "https://caniuse.com/webxr",
"tests_url": "https://wpt.fyi/results/storage-access-api",
"engines": ["webkit", "gecko"],
"spec_category": "Storage and files"
},
{
"spec_url": "https://webassembly.github.io/exception-handling/js-api/",
"spec_name": "WebAssembly JS Exception Handling",
"repo_url": "https://github.com/webassembly/exception-handling/js-api/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Exception",
"caniuse_url": "https://caniuse.com/mdn-javascript_builtins_webassembly_exception",
"tests_url": "https://wpt.fyi/results/wasm/jsapi",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "WebAssembly"
},
{
"spec_url": "https://webassembly.github.io/spec/js-api/",
"spec_name": "WebAssembly JS Interface",
"repo_url": "https://github.com/webassembly/spec/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/WebAssembly/Using_the_JavaScript_API",
"caniuse_url": "https://caniuse.com/mdn-javascript_builtins_webassembly_instance",
"tests_url": "https://wpt.fyi/results/wasm/jsapi",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "WebAssembly"
},
{
"spec_url": "https://webassembly.github.io/spec/web-api/",
"spec_name": "WebAssembly Web API",
"repo_url": "https://github.com/WebAssembly/spec/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/instantiateStreaming",
"caniuse_url": "https://caniuse.com/mdn-javascript_builtins_webassembly_instantiatestreaming",
"tests_url": "https://wpt.fyi/results/wasm/webapi",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "WebAssembly"
},
{
"spec_url": "https://webaudio.github.io/web-audio-api/",
"spec_name": "Web Audio API",
"repo_url": "https://github.com/webaudio/web-audio-api/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API",
"caniuse_url": "https://caniuse.com/audio-api",
"tests_url": "https://wpt.fyi/results/webaudio",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Media"
},
{
"spec_url": "https://webaudio.github.io/web-midi-api/",
"spec_name": "Web MIDI API",
"repo_url": "https://github.com/webaudio/web-midi-api/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Web_MIDI_API",
"caniuse_url": "https://caniuse.com/midi",
"tests_url": "https://wpt.fyi/results/webmidi",
"engines": ["gecko", "blink"],
"spec_category": "Media"
},
{
"spec_url": "https://webbluetoothcg.github.io/web-bluetooth/",
"spec_name": "Web Bluetooth",
"repo_url": "https://github.com/webbluetoothcg/web-bluetooth/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/Web_Bluetooth_API",
"caniuse_url": "https://caniuse.com/web-bluetooth",
"tests_url": "https://wpt.fyi/results/bluetooth",
"engines": ["blink"],
"spec_category": "Platform interaction"
},
{
"spec_url": "https://drafts.css-houdini.org/css-paint-api/",
"spec_name": "CSS Painting API",
"repo_url": "https://github.com/w3c/css-houdini-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS_Painting_API",
"caniuse_url": "https://caniuse.com/css-paint-api",
"tests_url": "https://wpt.fyi/results/css/css-paint-api",
"engines": ["blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.css-houdini.org/css-properties-values-api/",
"spec_name": "CSS Properties and Values API",
"repo_url": "https://github.com/w3c/css-houdini-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS_Properties_and_Values_API",
"caniuse_url": "https://caniuse.com/mdn-api_css_registerproperty",
"tests_url": "https://wpt.fyi/results/css/css-properties-values-api",
"engines": ["blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.css-houdini.org/css-typed-om/",
"spec_name": "CSS Typed OM",
"repo_url": "https://github.com/w3c/css-houdini-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS_Typed_OM_API",
"caniuse_url": "https://caniuse.com/mdn-api_cssstylevalue",
"tests_url": "https://wpt.fyi/results/css/css-typed-om",
"engines": ["blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css2/",
"spec_name": "CSS 2",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS",
"tests_url": "https://wpt.fyi/results/css/CSS2",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-align/",
"spec_name": "CSS Box Alignment",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Box_Alignment",
"caniuse_url": "https://caniuse.com/mdn-css_properties_align-content",
"tests_url": "https://wpt.fyi/results/css/css-align",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-animations/",
"spec_name": "CSS Animations",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Animations",
"caniuse_url": "https://caniuse.com/css-animation",
"tests_url": "https://wpt.fyi/results/css/css-animations",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Animation"
},
{
"spec_url": "https://drafts.csswg.org/css-animations-2/",
"spec_name": "CSS Animations 2",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/animation-timeline",
"caniuse_url": "https://caniuse.com/mdn-css_properties_animation-timeline",
"tests_url": "https://wpt.fyi/results/css/css-animations",
"engines": [],
"spec_category": "Animation"
},
{
"spec_url": "https://drafts.csswg.org/css-backgrounds/",
"spec_name": "CSS Backgrounds and Borders",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Backgrounds_and_Borders",
"caniuse_url": "https://caniuse.com/background-img-opts",
"tests_url": "https://wpt.fyi/results/css/css-backgrounds",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-backgrounds-4/",
"spec_name": "CSS Backgrounds and Borders 4",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Backgrounds_and_Borders",
"caniuse_url": "https://caniuse.com/background-position-x-y",
"tests_url": "https://wpt.fyi/results/css/css-backgrounds/background-position-xy-three-four-values-passthru.html",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-box/",
"spec_name": "CSS Box Model",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Box_Model",
"caniuse_url": "https://caniuse.com/?search=css-box",
"tests_url": "https://wpt.fyi/results/css/css-box",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-box-4/",
"spec_name": "CSS Box Model 4",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/margin-trim",
"caniuse_url": "https://caniuse.com/mdn-css_properties_margin-trim",
"tests_url": "https://wpt.fyi/results/css/css-box",
"engines": [],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-break/",
"spec_name": "CSS Fragmentation",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fragmentation",
"caniuse_url": "https://caniuse.com/?search=css-break",
"tests_url": "https://wpt.fyi/results/css/css-break",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-cascade/",
"spec_name": "CSS Cascading and Inheritance",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/Cascade",
"tests_url": "https://wpt.fyi/results/css/css-cascade",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-cascade-5/",
"spec_name": "CSS Cascading and Inheritance 5",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@layer",
"caniuse_url": "https://caniuse.com/css-cascade-layers",
"tests_url": "https://wpt.fyi/results/css/css-cascade",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-color/",
"spec_name": "CSS Color",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors",
"tests_url": "https://wpt.fyi/results/css/css-color",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-color-5/",
"spec_name": "CSS Color 5",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix",
"caniuse_url": "https://caniuse.com/mdn-css_types_color_color-mix",
"tests_url": "https://wpt.fyi/results/css/css-color/color-mix-basic-001.html",
"engines": [],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-color-6/",
"spec_name": "CSS Color 6",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-contrast",
"caniuse_url": "https://caniuse.com/mdn-css_types_color_color-contrast",
"tests_url": "https://wpt.fyi/results/css/css-color/color-contrast-001.html",
"engines": [],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-color-adjust/",
"spec_name": "CSS Color Adjustment",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Applying_color",
"caniuse_url": "https://caniuse.com/css-color-adjust",
"tests_url": "https://wpt.fyi/results/css/css-color-adjust",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-conditional-3/",
"spec_name": "CSS Conditional Rules 3",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Conditional_Rules",
"caniuse_url": "https://caniuse.com/css-supports-api",
"tests_url": "https://wpt.fyi/results/css/css-conditional",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-conditional-4/",
"spec_name": "CSS Conditional Rules 4",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/@supports#selector_experimental",
"caniuse_url": "https://caniuse.com/css-supports-api",
"tests_url": "https://wpt.fyi/results/css/css-conditional/at-supports-selector-001.html",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-contain/",
"spec_name": "CSS Containment",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Containment",
"caniuse_url": "https://caniuse.com/css-containment",
"tests_url": "https://wpt.fyi/results/css/css-contain",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-content/",
"spec_name": "CSS Generated Content",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Generated_Content",
"caniuse_url": "https://caniuse.com/mdn-css_properties_content",
"tests_url": "https://wpt.fyi/results/css/css-content",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-counter-styles/",
"spec_name": "CSS Counter Styles",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Counter_Styles",
"caniuse_url": "https://caniuse.com/css-at-counter-style",
"tests_url": "https://wpt.fyi/results/css/css-counter-styles/counter-style-at-rule",
"engines": ["gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-display/",
"spec_name": "CSS Display",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Display",
"caniuse_url": "https://caniuse.com/css-display-contents",
"tests_url": "https://wpt.fyi/results/css/css-display",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-easing/",
"spec_name": "CSS Easing Functions",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/easing-function",
"caniuse_url": "https://caniuse.com/mdn-css_types_easing-function",
"tests_url": "https://wpt.fyi/results/css/css-easing",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-env/",
"spec_name": "CSS Environment Variables",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/env",
"caniuse_url": "https://caniuse.com/css-env-function",
"tests_url": "https://wpt.fyi/results/css/css-env",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-flexbox/",
"spec_name": "CSS Flexible Box Layout",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout",
"caniuse_url": "https://caniuse.com/flexbox",
"tests_url": "https://wpt.fyi/results/css/css-flexbox",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-font-loading/",
"spec_name": "CSS Font Loading",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS_Font_Loading_API",
"caniuse_url": "https://caniuse.com/font-loading",
"tests_url": "https://wpt.fyi/results/css/css-font-loading",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-fonts/",
"spec_name": "CSS Fonts",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts",
"caniuse_url": "https://caniuse.com/mdn-css_properties_font",
"tests_url": "https://wpt.fyi/results/css/css-fonts",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-fonts-5/",
"spec_name": "CSS Fonts 5",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts",
"caniuse_url": "https://caniuse.com/font-size-adjust",
"tests_url": "https://wpt.fyi/results/css/css-fonts/font-size-adjust-001.html",
"engines": ["gecko"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-grid/",
"spec_name": "CSS Grid Layout",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout",
"caniuse_url": "https://caniuse.com/css-grid",
"tests_url": "https://wpt.fyi/results/css/css-grid",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-grid-3/",
"spec_name": "CSS Grid Layout 3",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://caniuse.com/mdn-css_properties_grid-template-rows_masonry",
"caniuse_url": "https://caniuse.com/mdn-css_properties_grid-template-rows_masonry",
"tests_url": "https://wpt.fyi/results/css/css-grid/masonry",
"engines": ["gecko"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-images/",
"spec_name": "CSS Images",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Images",
"caniuse_url": "https://caniuse.com/?search=gradient",
"tests_url": "https://wpt.fyi/results/css/css-images",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-images-4/",
"spec_name": "CSS Images 4",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Images",
"caniuse_url": "https://caniuse.com/css-image-set",
"tests_url": "https://wpt.fyi/results/css/css-images/image-set",
"engines": ["gecko"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-inline/",
"spec_name": "CSS Inline Layout",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/CSS_Layout",
"caniuse_url": "https://caniuse.com/?search=css-inline",
"tests_url": "https://wpt.fyi/results/css/css-inline",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-lists/",
"spec_name": "CSS Lists and Counters",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Lists_and_Counters",
"caniuse_url": "https://caniuse.com/?search=css-list",
"tests_url": "https://wpt.fyi/results/css/css-lists",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-logical/",
"spec_name": "CSS Logical Properties and Values",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Logical_Properties",
"caniuse_url": "https://caniuse.com/css-logical-props",
"tests_url": "https://wpt.fyi/results/css/css-logical",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-multicol/",
"spec_name": "CSS Multi-column Layout",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Columns",
"caniuse_url": "https://caniuse.com/multicolumn",
"tests_url": "https://wpt.fyi/results/css/css-multicol",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-namespaces/",
"spec_name": "CSS Namespaces",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Namespaces",
"caniuse_url": "https://caniuse.com/css-namespaces",
"tests_url": "https://wpt.fyi/results/css/css-namespaces",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-overflow/",
"spec_name": "CSS Overflow",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/overflow",
"caniuse_url": "https://caniuse.com/?search=css-overflow",
"tests_url": "https://wpt.fyi/results/css/css-overflow",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-overscroll/",
"spec_name": "CSS Overscroll Behavior",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior",
"caniuse_url": "https://caniuse.com/css-overscroll-behavior",
"tests_url": "https://wpt.fyi/results/css/css-overscroll-behavior",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-page/",
"spec_name": "CSS Paged Media",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Pages",
"caniuse_url": "https://caniuse.com/css-paged-media",
"tests_url": "https://wpt.fyi/results/css/css-page",
"engines": ["blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-position/",
"spec_name": "CSS Positioned Layout",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning",
"caniuse_url": "https://caniuse.com/?search=css-position",
"tests_url": "https://wpt.fyi/results/css/css-position",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-pseudo/",
"spec_name": "CSS Pseudo-Elements",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements",
"caniuse_url": "https://caniuse.com/?search=css-pseudo-element",
"tests_url": "https://wpt.fyi/results/css/css-pseudo",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-rhythm/",
"spec_name": "CSS Rhythmic Sizing",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/line-height-step",
"caniuse_url": "https://caniuse.com/mdn-css_properties_line-height-step",
"engines": [],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-ruby/",
"spec_name": "CSS Ruby Annotation Layout",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Ruby",
"caniuse_url": "https://caniuse.com/?search=css-ruby",
"tests_url": "https://wpt.fyi/results/css/css-ruby",
"engines": ["gecko"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-scoping/",
"spec_name": "CSS Scoping",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/Web_Components",
"caniuse_url": "https://caniuse.com/shadowdomv1",
"tests_url": "https://wpt.fyi/results/css/css-scoping",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-scroll-anchoring/",
"spec_name": "CSS Scroll Anchoring",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-anchor/Guide_to_scroll_anchoring",
"caniuse_url": "https://caniuse.com/css-overflow-anchor",
"tests_url": "https://wpt.fyi/results/css/css-scroll-anchoring",
"engines": ["gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-scroll-snap/",
"spec_name": "CSS Scroll Snap",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Scroll_Snap",
"caniuse_url": "https://caniuse.com/css-snappoints",
"tests_url": "https://wpt.fyi/results/css/css-scroll-snap",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-scrollbars/",
"spec_name": "CSS Scrollbars Styling",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Scrollbars",
"caniuse_url": "https://caniuse.com/css-scrollbar",
"tests_url": "https://wpt.fyi/results/css/css-scrollbars",
"engines": ["gecko"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-shadow-parts/",
"spec_name": "CSS Shadow Parts",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/::part",
"caniuse_url": "https://caniuse.com/shadowdomv1",
"tests_url": "https://wpt.fyi/results/css/css-shadow-parts",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-shapes/",
"spec_name": "CSS Shapes",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Shapes",
"caniuse_url": "https://caniuse.com/css-shapes",
"tests_url": "https://wpt.fyi/results/css/css-shapes",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-size-adjust/",
"spec_name": "CSS Mobile Text Size Adjustment",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/text-size-adjust",
"caniuse_url": "https://caniuse.com/text-size-adjust",
"tests_url": "https://wpt.fyi/results/css/css-size-adjust",
"engines": ["blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-sizing/",
"spec_name": "CSS Box Sizing",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing",
"caniuse_url": "https://caniuse.com/css3-boxsizing",
"tests_url": "https://wpt.fyi/results/css/css-sizing",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-sizing-4/",
"spec_name": "CSS Box Sizing 4",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/contain-intrinsic-size",
"caniuse_url": "https://caniuse.com/mdn-css_properties_contain-intrinsic-size",
"tests_url": "https://wpt.fyi/results/css/css-sizing/contain-intrinsic-size",
"engines": ["blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-text/",
"spec_name": "CSS Text",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Text",
"caniuse_url": "https://caniuse.com/?search=css-text",
"tests_url": "https://wpt.fyi/results/css/css-text",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-text-4/",
"spec_name": "CSS Text 4",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/hyphenate-character",
"caniuse_url": "https://caniuse.com/mdn-css_properties_hyphenate-character",
"tests_url": "https://wpt.fyi/results/css/css-text/hyphens/hyphenate-character-001.html",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-text-decor/",
"spec_name": "CSS Text Decoration",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Text_Decoration",
"caniuse_url": "https://caniuse.com/?search=text-decoration",
"tests_url": "https://wpt.fyi/results/css/css-text-decor",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-text-decor-4/",
"spec_name": "CSS Text Decoration 4",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Text_Decoration",
"caniuse_url": "https://caniuse.com/?search=text-decoration-skip",
"tests_url": "https://wpt.fyi/results/css/css-text-decor",
"engines": ["webkit"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-transforms/",
"spec_name": "CSS Transforms",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transforms",
"caniuse_url": "https://caniuse.com/transforms2d",
"tests_url": "https://wpt.fyi/results/css/css-transforms",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Animation"
},
{
"spec_url": "https://drafts.csswg.org/css-transforms-2/",
"spec_name": "CSS Transforms 2",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transforms",
"caniuse_url": "https://caniuse.com/transforms3d",
"tests_url": "https://wpt.fyi/results/css/css-transforms",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Animation"
},
{
"spec_url": "https://drafts.csswg.org/css-transitions/",
"spec_name": "CSS Transitions",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transitions",
"caniuse_url": "https://caniuse.com/css-transitions",
"tests_url": "https://wpt.fyi/results/css/css-transitions",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Animation"
},
{
"spec_url": "https://drafts.csswg.org/css-transitions-2/",
"spec_name": "CSS Transitions 2",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSSTransition",
"caniuse_url": "https://caniuse.com/mdn-api_csstransition",
"tests_url": "https://wpt.fyi/results/css/css-transitions",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "Animation"
},
{
"spec_url": "https://drafts.csswg.org/css-ui/",
"spec_name": "CSS Basic User Interface",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Basic_User_Interface",
"tests_url": "https://wpt.fyi/results/css/css-ui",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-values/",
"spec_name": "CSS Values and Units",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Values_and_Units",
"tests_url": "https://wpt.fyi/results/css/css-values",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-values-5/",
"spec_name": "CSS Values and Units 5",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/attr",
"caniuse_url": "https://caniuse.com/css3-attr",
"tests_url": "https://wpt.fyi/results/css/css-values",
"engines": [],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-variables/",
"spec_name": "CSS Custom Properties (Variables)",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Variables",
"caniuse_url": "https://caniuse.com/css-variables",
"tests_url": "https://wpt.fyi/results/css/css-variables",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-will-change/",
"spec_name": "CSS Will Change",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/will-change",
"caniuse_url": "https://caniuse.com/will-change",
"tests_url": "https://wpt.fyi/results/css/css-will-change",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/css-writing-modes/",
"spec_name": "CSS Writing Modes",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Writing_Modes",
"caniuse_url": "https://caniuse.com/?search=css-writing-mode",
"tests_url": "https://wpt.fyi/results/css/css-writing-modes",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/cssom-view/",
"spec_name": "CSSOM View",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSSOM_View",
"tests_url": "https://wpt.fyi/results/css/cssom-view",
"engines": ["webkit", "gecko", "blink"],
"spec_category": "CSS"
},
{
"spec_url": "https://drafts.csswg.org/cssom/",
"spec_name": "CSSOM",
"repo_url": "https://github.com/w3c/csswg-drafts/",
"mdn_url": "https://developer.mozilla.org/en-US/docs/Web/API/CSS_Object_Model",
"tests_url": "https://wpt.fyi/results/css/cssom",
"engines": ["webkit", "gecko", "blink"],