forked from lhai36366/lhai36366
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.md3
6212 lines (5694 loc) · 565 KB
/
README.md3
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
### Hi there 👋
<!--
**lhai36366/lhai36366** is a ✨ _special_ ✨ repository because its `README.md` (this file) appears on your GitHub profile.
Here are some ideas to get you started:
- 🔭 I’m currently working on ...
- 🌱 I’m currently learning ...
- 👯 I’m looking to collaborate on ...
- 🤔 I’m looking for help with ...
- 💬 Ask me about ...
- 📫 How to reach me: ...
- 😄 Pronouns: ...
- ⚡ Fun fact: ...
-->
WPF Partial Trust Security
Article
10 minutes to read
In general, Internet applications should be restricted from having direct access to critical system resources, to prevent malicious damage. By default, HTML and client-side scripting languages are not able to access critical system resources. Because Windows Presentation Foundation (WPF) browser-hosted applications can be launched from the browser, they should conform to a similar set of restrictions. To enforce these restrictions, WPF relies on both Code Access Security (CAS) and ClickOnce (see WPF Security Strategy - Platform Security). By default, browser-hosted applications request the Internet zone CAS set of permissions, irrespective of whether they are launched from the Internet, the local intranet, or the local computer. Applications that run with anything less than the full set of permissions are said to be running with partial trust.
WPF provides a wide variety of support to ensure that as much functionality as possible can be used safely in partial trust, and along with CAS, provides additional support for partial trust programming.
This topic contains the following sections:#include <iostream>
using namespace std;
int main(){
int number;
cout << "Hello World!" << endl;
return 0;
} return {
-- Error message
["property-param-not-provided"] = "paramètre 'property' manquant",
["qualifier-param-not-provided"] = "paramètre 'qualifier' manquant",
["entity-param-not-provided"] = "paramètre 'entity' manquant",
["entity-not-found"] = "entité non trouvée",
["unknown-claim-type"] = "type d'affirmation inconnu",
["unknown-snak-typeg"] = "type de 'snak' inconnu",
["unknown-datavalue-type"] = "type de valeur de donnée inconnu",
["unknown-entity-type"] = "type d'entité inconnu",
["invalid-id"] = "identifiant inconnu",
["invalid-datatype"] = "donnée de type $1, devrait être $2",
["invalid-linktype"] = "type de lien inconnu",
["invalid-event-type"] = "l'événement devrait être une chaîne, est $1",
["invalid-entity-id"] = "identifiant d'entité invalide : $1",
["invalid-project-code"] = "identifiant de project Wikimédia invalide : $1",
["cat-unsorted-issue"] = "Page avec un problème de codage Wikidata",
-- Autres messages
["no-label"] = "pas de libellé",
['no description'] = "pas de description",
["novalue"] = "-",
["hidevalue"] = "-", -- symbol signalling in the wikitext that the value should not be displayed
["somevalue"] = "inconnu",
["sometime"] = "date inconnue",
['to translate'] = 'Page utilisant des données de Wikidata à traduire',
["trackingcat"] = 'Page utilisant $1',
['see-wikidata-value'] = "Voir et modifier les données sur Wikidata", -- lien vers des valeurs sur une propriété Wikidata
['see-wikidata'] = "Voir l'élément Wikidata correspondant", -- utilisé sur les liens Wikidata par défaut en l'absence de lien interne disponible
['see-another-project'] = "Article sur $1",
['see-another-language'] = "Article sur Wikipédia en $1",
['activate-query'] = "<div class='par wikidata'></div>", -- activates an on-demand-only query
['qualif-separator'] = " ; ", -- separate qualifiers shown next to a standard statement
['approximate-value'] = "environ $1",
['approximate-place'] = "$1 (ou environs)",
['uncertain-information'] = "$1 (?)",
} <includeonly>{{Infobox/Début}}
{{Infobox/Titre |{{non vide|{{{nom|}}}|{{Titre sans précision}}}}
| {{non vide|{{{couleur boîte|}}}|DFEDFF}}
| <!--pas de pictogramme dans l’entête--> |{{#if:{{{titre blanc|}}} |#FFFFFF | {{{couleur texte|}}} }}
}}<!-- LOGO -->
{{Infobox/Image
| {{Wikidata| P154 |{{{logo|}}} |numval=1}}
| {{{légende logo|{{{légende|}}}}}}
| {{{taille logo|}}}
| {{#if:{{{alt|}}}| {{{alt|}}} |logo de {{PAGENAME}} }}
|||Entreprise
}}
{{Infobox/Image optionnelle
| {{{logo 2|}}}
| {{{logo 2|}}}
| {{{légende logo 2|}}}
| {{{taille logo 2|}}}
| {{{alt 2|}}}
}}
{{Infobox/Image
|1 = {{wikidata|P18|{{{image|}}}|numval=1}}
|2 = {{#ifeq:{{légende Wikidata|{{{légende image|}}}}}|||{{légende Wikidata|{{{légende image|}}}|linkback=true}}}}
|3 = {{{taille image|}}}
|4 = {{#if:{{{alt image|}}}| {{{alt image|}}} |illustration de {{PAGENAME}} }}
|7 = Entreprise
}}
{{Infobox/Séparateur optionnel|{{Wikidata| P154 |{{{logo|}}} |numval=1}}{{{logo 2|}}}{{wikidata|P18|{{{image|}}}|numval=1}}| {{non vide|{{{couleur boîte|}}}|DFEDFF}} }}
{{Infobox/Ligne mixte optionnelle|Ancien nom|{{{ancien nom|}}}}}
{{Infobox/Ligne mixte optionnelle| [[:Catégorie:Entreprise par année de fondation|Création]] | {{Wikidata| P571 | {{{date de création|{{{fondation|}}} }}} |showqualifiers=P276 |showsource = true |linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| Dates clés |{{{dates-clés|}}} }}
{{Infobox/Ligne mixte optionnelle| Disparition | {{Wikidata| P576 | {{{date de disparition| {{{dissolution|}}} }}} |showsource = true|linkback=true |addcat=true }} }}
{{Infobox/Ligne mixte optionnelle| Fondateurs | {{Wikidata| P112 | {{{fondateur|}}} |showsource = true |linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| Personnages clés|<!--
Saut de ligne pour permettre les listes à puce -->
{{{personnages-clés|}}} }}
{{Infobox/Ligne mixte optionnelle| [[:Catégorie:Forme juridique des entreprises|Forme juridique]] | {{Wikidata| P1454 |{{{forme juridique| {{{forme|}}} }}} |showsource = true |linkback=true |addcat=true }} }}
{{Infobox/Ligne mixte optionnelle| [[Action (finance)|Action]] | {{Wikidata| P414 | {{{action|}}}| showqualifiers=P249 |showsource = true |linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| [[Slogan publicitaire|Slogan]]| {{Wikidata| P1451 | {{{slogan|}}} |showsource = true |linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle
| [[Siège social]]
| {{#if:{{{siège (ville)|}}}
| {{{siège (ville)|}}}{{#if:{{{siège (pays)|}}}|<br>{{drapeau2 | {{{siège (pays)|}}} | align = {{#ifeq:{{{drapeau|}}} |non|no|left}} }} }}
| {{#if:{{#property:P159}}
| {{#if:{{Wikidata| P159 |showonlyqualifier=P969|numval=1}} | {{Wikidata| P159 |showonlyqualifier=P969|numval=1}} <br> }}<!-- adresse
-->{{Wikidata| P159 |addcat=true|numval=1}}<!-- ville
-->{{#if:{{Wikidata| P159 |showonlyqualifier=P131|numval=1}} | , {{Wikidata| P159 |showonlyqualifier=P131|numval=1}} }}<!-- localisation administrative
-->{{Linkback|P159}}<!-- pays
-->{{#if: {{Wikidata| P159 |showonlyqualifier=P17 |link=-|numval=1}} | <br>{{drapeau2 | {{Wikidata| P159 |showonlyqualifier=P17 |link=-|numval=1}} | align = {{#ifeq:{{{drapeau|}}} |non|no|left}} }} }}
}}
}}<!--
-->
}}
{{Infobox/Ligne mixte optionnelle| [[Directeur général|Direction]] |<!--
Saut de ligne pour permettre les listes à puce -->
{{Wikidata| P169 | {{{direction actuelle|}}} |showsource = true |showdate = true |linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| [[Président du conseil d'administration|Président]] | {{{présidents|{{{président|}}} }}} | {{Wikidata| P488 |showsource = true |showdate = true|linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| Directeurs | {{Wikidata| P1037 | {{{directeurs|{{{directeur|}}}}}} |showdate = true |showsource = true |linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| Actionnaires| {{Wikidata| P127 | {{{actionnaires|{{{actionnaire|}}} }}} | showqualifiers=P1107 |showsource = true|linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| {{page h'|Associé|Sociétaires}}|{{{sociétaires|}}}}}
{{Infobox/Ligne mixte optionnelle| [[Secteur économique|Activité]] | {{Wikidata| P452 | {{{secteurs d'activités|}}} |showsource = true|linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| [[Biens et services marchands|Produits]]|<!--
Saut de ligne pour permettre les listes à puce -->
{{Wikidata| P1056 | {{{produits|}}} |showsource = true |linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| Organe central |{{{organe-central|}}}}}
{{Infobox/Ligne mixte optionnelle| [[Société mère]]| {{Wikidata| P749 | {{{société mère|}}} |showdate = true |showsource = true |linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| [[Société sœur|Sociétés sœurs]]|<!--
Saut de ligne pour permettre les listes à puce -->
{{{société sœur|{{{société soeur|{{{société_soeur|}}}}}}}}}}}
{{Infobox/Ligne mixte optionnelle| [[Filiale|Filiales]]|<!--
Saut de ligne pour permettre les listes à puce -->
{{Wikidata| P355 |{{{filiales|}}} }} }}
{{Infobox/Ligne mixte optionnelle| Partenaires | {{Wikidata| P2652 | {{{partenaires|{{{Partenaires|}}}}}} |showsource = true |linkback=true |addcat=true }} }}
{{Infobox/Ligne mixte optionnelle| Effectif | {{Wikidata| P1128 | {{{effectif|}}} |showdate = true |showsource = true |linkback=true |addcat=true}} }}
{{Infobox/Ligne mixte optionnelle| {{{nom identifiant}}}|{{{identifiant|}}}}}
{{Infobox/Ligne mixte optionnelle| [[Banque-Carrefour des Entreprises|BCE]] | {{Wikidata| P3376 | {{{BCE|}}} |showsource = true|linkback=true |addcat=true |numval=1|urlpattern={{Wikidata|entity=P3376|P1630}}}} }}<!--Belgique-->
{{Infobox/Ligne mixte optionnelle| CVR | {{Wikidata| P1059 | {{{CVR|}}} |showsource = true|linkback=true |addcat=true |numval=1|urlpattern={{Wikidata|entity=P1059|P1630}}}} }}<!--Danemark-->
{{Infobox/Ligne mixte optionnelle| [[Système d'identification du répertoire des entreprises|SIREN]] | {{Wikidata| P1616 | {{{SIREN|}}} |showsource = true|linkback=true |addcat=true |numval=1|urlpattern={{Wikidata|entity=P1616|P1630}} }} }}<!--France-->
{{Infobox/Ligne mixte optionnelle| Entreprise hongroise | {{Wikidata| P2619 | {{{hun|}}} |showsource = true|linkback=true |addcat=true |numval=1|urlpattern={{Wikidata|entity=P2619|P1630}}}} }}<!--Hongrie-->
{{Infobox/Ligne mixte optionnelle| Organisation norvégienne | {{Wikidata| P2333 | {{{orgnr|}}} |showsource = true|linkback=true |addcat=true |numval=1|urlpattern={{Wikidata|entity=P2333|P1630}}}} }}<!--Norvège-->
{{Infobox/Ligne mixte optionnelle| Companies House | {{Wikidata| P2622 | {{{companies house|}}} |showsource = true|linkback=true |addcat=true |numval=1|urlpattern={{Wikidata|entity=P2622|P1630}}}} }}<!--Royaume-Uni-->
{{Infobox/Ligne mixte optionnelle| OKPO | {{Wikidata| P2391 | {{{OKPO|}}} |showsource = true|linkback=true |addcat=true |numval=1|urlpattern={{Wikidata|entity=P2391|P1630}}}} }}<!--Russie-->
{{Infobox/Ligne mixte optionnelle| TVA européenne | {{Wikidata| P3608 | {{{TVA|}}} |showsource = true|linkback=true |addcat=true |numval=1|urlpattern={{Wikidata|entity=P3608|P1630}}}} }}<!--Union européenne-->
{{Infobox/Ligne mixte optionnelle| [[Site web]] | {{Wikidata|P856| {{{site web|}}} |addcat=true |linkback=true |displayformat=weblink |conjtype=new line }} }}
{{#if:{{{budget|}}}{{{capitalisation boursière|}}}{{{fonds propres|}}}{{{dette|}}}{{{chiffre d'affaires|{{{CA|}}}}}}{{{actifs sous gestion (banques)|}}}{{{somme du bilan (banques)|}}}{{{primes brut (assurances)|}}}{{{résultat net|}}}{{{rémunération|}}}
| {{Infobox/Séparateur| {{non vide|{{{couleur boîte|}}}|DFEDFF}} }}
}}
{{Infobox/Ligne mixte optionnelle| [[Budget]]| {{Wikidata| P2769 | {{{budget|}}} |showunit = long |showdate = true |showsource = true |addcat=true |linkback=true}} }}
{{Infobox/Ligne mixte optionnelle| [[Capitalisation boursière|Capitalisation]]| {{Wikidata| P2226 | {{{capitalisation boursière|}}} |showunit = long |showdate = true |showsource = true |addcat=true |linkback=true}} }}
{{Infobox/Ligne mixte optionnelle| [[Capitaux propres|Fonds propres]]|{{{fonds propres|}}}}}
{{Infobox/Ligne mixte optionnelle| [[Dette#Dette des entreprises|Dette]]|{{{dette|}}}}}
{{Infobox/Ligne mixte optionnelle| [[Chiffre d'affaires]]| {{Wikidata| P2139 | {{{chiffre d'affaires|{{{CA|}}}}}} |showunit = long |showdate = true |showsource = true |addcat=true |linkback=true}} {{#if: {{{évolution du CA|}}} |<br />{{{évolution du CA|}}}|}} }}
{{Infobox/Ligne mixte optionnelle| Actifs sous gestion|{{{actifs sous gestion (banques)|}}}}}
{{Infobox/Ligne mixte optionnelle| [[État de la situation financière|Bilan comptable]]|{{{somme du bilan (banques)|}}}}}
{{Infobox/Ligne mixte optionnelle| [[Prime d'assurance|Volume des primes]]|{{{primes brut (assurances)|}}}}}
{{Infobox/Ligne mixte optionnelle| [[Résultat net]]| {{Wikidata|P2295 |{{{résultat net|}}} |showunit = long |showdate = true |showsource = true |addcat=true |linkback=true }} {{#if: {{{évolution du résultat net|}}} |<br />{{{évolution du résultat net|}}}|}} }}
{{Infobox/Ligne mixte optionnelle| [[Salaire|Plus haute rémunération]]|{{{rémunération|}}}}}
{{#if:{{{société précédente|}}}{{{société suivante|}}}
| {{Infobox/Séparateur| {{non vide|{{{couleur boîte|}}}|DFEDFF}} }}
}}
{{Infobox/Ligne mixte optionnelle| Société précédente | {{Wikidata| P1365 | {{{société précédente|}}} |showsource = true|linkback=true }} }}
{{Infobox/Ligne mixte optionnelle| Société suivante | {{Wikidata| P1366 | {{{société suivante|}}} |showsource = true|linkback=true }} }}
{{Infobox/Notice avec wikidata|lien=Infobox Société|couleur={{non vide|{{{couleur boîte|}}}|DFEDFF}} }}
{{Infobox/Fin}}</includeonly><noinclude>{{Documentation}}</noinclude>
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xml:lang="en-US">
<id>tag:github.com,2008:/Hailuu3333</id>
<link type="text/html" rel="alternate" href="https://github.com/Hailuu3333"/>
<link type="application/atom+xml" rel="self" href="https://github.com/Hailuu3333.private.atom?token=AWURDBCIBA7PL4DHNWCYJQ573ZGUK"/>
<title>Private Feed for Hailuu3333</title>
<updated>2022-01-03T00:04:37Z</updated>
<entry>
<id>tag:github.com,2008:PushEvent/19552207966</id>
<published>2022-01-03T00:04:37Z</published>
<updated>2022-01-03T00:04:37Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/4e57516940...5aa6efbc89"/>
<title type="html">queengooborg pushed to main in mdn/browser-compat-data</title>
<author>
<name>queengooborg</name>
<email>[email protected]</email>
<uri>https://github.com/queengooborg</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/5179191?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=64&amp;v=4" width="32" height="32" alt="@queengooborg"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/queengooborg" rel="noreferrer">queengooborg</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-03T00:04:37Z" class="no-wrap">Jan 3, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits pusher-is-only-committer">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/5aa6efbc8977d739d4b576b4fa28b844b28bf731" rel="noreferrer">5aa6efb</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Chrome/Safari versions for SVGAnimatedString API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1090672844" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14326" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14326/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14326" rel="noreferrer">#14326</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551639488</id>
<published>2022-01-02T21:40:04Z</published>
<updated>2022-01-02T21:40:04Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/ad63782b3c...4e57516940"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:40:04Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/4e5751694070a6879ccf8ca4996e9647304cdced" rel="noreferrer">4e57516</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Firefox versions for CanvasGradient API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1089194568" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14201" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14201/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14201" rel="noreferrer">#14201</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551636970</id>
<published>2022-01-02T21:39:24Z</published>
<updated>2022-01-02T21:39:24Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/7eb0b002d1...ad63782b3c"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:39:24Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/ad63782b3c553f16814b1cfdbb465595677bc948" rel="noreferrer">ad63782</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update all browsers versions for CanvasCaptureMediaStreamTrack API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1089193064" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14200" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14200/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14200" rel="noreferrer">#…</a>
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551634584</id>
<published>2022-01-02T21:38:45Z</published>
<updated>2022-01-02T21:38:45Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/b01ce5a7b2...7eb0b002d1"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:38:45Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/7eb0b002d11135988a7773ed547afc816584f8e0" rel="noreferrer">7eb0b00</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Firefox Android versions for CSSTransition API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1089189592" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14198" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14198/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14198" rel="noreferrer">#14198</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551633437</id>
<published>2022-01-02T21:38:27Z</published>
<updated>2022-01-02T21:38:27Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/7b998fab99...b01ce5a7b2"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:38:27Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/b01ce5a7b2e5991e0b97a7ceb14b1d5ffb246c42" rel="noreferrer">b01ce5a</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update IE versions for CSSImportRule API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1089188086" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14197" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14197/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14197" rel="noreferrer">#14197</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551629838</id>
<published>2022-01-02T21:37:31Z</published>
<updated>2022-01-02T21:37:31Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/ee610c9f87...7b998fab99"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:37:31Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/7b998fab99a01e53081ead85a02657052adee39b" rel="noreferrer">7b998fa</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Chromium versions for ByteLengthQueuingStrategy API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1089172545" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14191" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14191/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14191" rel="noreferrer">#14191</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551619217</id>
<published>2022-01-02T21:35:03Z</published>
<updated>2022-01-02T21:35:03Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/53f40aab39...ee610c9f87"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:35:03Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/ee610c9f87085b3d793a1bab0deb740e6dba8726" rel="noreferrer">ee610c9</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Chromium versions for ServiceWorkerGlobalScope API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1091098312" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14341" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14341/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14341" rel="noreferrer">#14341</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551617561</id>
<published>2022-01-02T21:34:40Z</published>
<updated>2022-01-02T21:34:40Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/b9f728a845...53f40aab39"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:34:40Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/53f40aab396c4ba467014928fd4d47cc9e674323" rel="noreferrer">53f40aa</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Chrome/Safari versions for ServiceWorkerRegistration API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1091101289" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14342" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14342/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14342" rel="noreferrer">#14342</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551613221</id>
<published>2022-01-02T21:33:37Z</published>
<updated>2022-01-02T21:33:37Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/3bd8a7622b...b9f728a845"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:33:37Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/b9f728a8459761e0073f3a50f38df547bdd78677" rel="noreferrer">b9f728a</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Firefox versions for api.ShadowRoot.slotAssignment (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1091102153" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14343" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14343/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14343" rel="noreferrer">#14343</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551611781</id>
<published>2022-01-02T21:33:16Z</published>
<updated>2022-01-02T21:33:16Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/513d1b866c...3bd8a7622b"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:33:16Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/3bd8a7622b137f32066c05caccf5f6af2f2a6462" rel="noreferrer">3bd8a76</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Firefox versions for api.SharedWorkerGlobalScope.name (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1091104173" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14344" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14344/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14344" rel="noreferrer">#14344</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551609326</id>
<published>2022-01-02T21:32:37Z</published>
<updated>2022-01-02T21:32:37Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/a9fa015b31...513d1b866c"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:32:37Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/513d1b866c8113a25d4315fe323013b37d5ba6c3" rel="noreferrer">513d1b8</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Firefox Android versions for StaticRange API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1091105238" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14345" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14345/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14345" rel="noreferrer">#14345</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551607692</id>
<published>2022-01-02T21:32:11Z</published>
<updated>2022-01-02T21:32:11Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/10727465ff...a9fa015b31"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:32:11Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/a9fa015b3136e36f05261c9dc0d247f546e70fe5" rel="noreferrer">a9fa015</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Firefox versions for StyleSheetList API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1091106628" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14347" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14347/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14347" rel="noreferrer">#14347</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551604160</id>
<published>2022-01-02T21:31:20Z</published>
<updated>2022-01-02T21:31:20Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/0dc5fd23fd...10727465ff"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:31:20Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/10727465ffbd4b5b8c33376b8d0075eea410172f" rel="noreferrer">1072746</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update all browsers versions for TextMetrics API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1091109829" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14351" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14351/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14351" rel="noreferrer">#14351</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551601639</id>
<published>2022-01-02T21:30:45Z</published>
<updated>2022-01-02T21:30:45Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/11475b613c...0dc5fd23fd"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:30:45Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/0dc5fd23fdc149c7c95028ab17746af033c8d1b1" rel="noreferrer">0dc5fd2</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update Chromium versions for api.TextTrackList.length (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1091111565" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14352" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14352/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14352" rel="noreferrer">#14352</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551599376</id>
<published>2022-01-02T21:30:13Z</published>
<updated>2022-01-02T21:30:13Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/e18d3d3ef8...11475b613c"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:30:13Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/11475b613c71391b91487f3699b15b384179a8bc" rel="noreferrer">11475b6</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>
Update IE versions for VTTCue API (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1091116632" data-permission-text="Title is private" data-url="https://github.com/mdn/browser-compat-data/issues/14354" data-hovercard-type="pull_request" data-hovercard-url="/mdn/browser-compat-data/pull/14354/hovercard" href="https://github.com/mdn/browser-compat-data/pull/14354" rel="noreferrer">#14354</a>)
</blockquote>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div></div></content>
</entry>
<entry>
<id>tag:github.com,2008:PushEvent/19551594672</id>
<published>2022-01-02T21:29:06Z</published>
<updated>2022-01-02T21:29:06Z</updated>
<link type="text/html" rel="alternate" href="https://github.com/mdn/browser-compat-data/compare/0865f60fcf...e18d3d3ef8"/>
<title type="html">foolip pushed to main in mdn/browser-compat-data</title>
<author>
<name>foolip</name>
<uri>https://github.com/foolip</uri>
</author>
<media:thumbnail height="30" width="30" url="https://avatars.githubusercontent.com/u/498917?s=30&v=4"/>
<content type="html"><div class="push"><div class="body">
<!-- push -->
<div class="d-flex flex-items-baseline border-bottom color-border-muted py-3">
<span class="mr-2"><a class="d-inline-block" href="/foolip" rel="noreferrer"><img class="avatar avatar-user" src="https://avatars.githubusercontent.com/u/498917?s=64&amp;v=4" width="32" height="32" alt="@foolip"></a></span>
<div class="d-flex flex-column width-full">
<div class="">
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/foolip" rel="noreferrer">foolip</a>
pushed to
<a class="Link--primary no-underline wb-break-all text-bold d-inline-block" href="/mdn/browser-compat-data" rel="noreferrer">mdn/browser-compat-data</a>
<span class="color-fg-muted no-wrap f6 ml-1">
<relative-time datetime="2022-01-02T21:29:06Z" class="no-wrap">Jan 2, 2022</relative-time>
</span>
<div class="Box p-3 mt-2 ">
<span>1 commit to</span>
<a class="branch-name" href="/mdn/browser-compat-data/tree/main" rel="noreferrer">main</a>
<div class="commits ">
<ul class="list-style-none">
<li class="d-flex flex-items-baseline">
<span title="queengooborg">
<a class="d-inline-block" href="/queengooborg" rel="noreferrer"><img class="mr-1 avatar-user" src="https://avatars.githubusercontent.com/u/5179191?s=32&amp;v=4" width="16" height="16" alt="@queengooborg"></a>
</span>
<code><a class="mr-1" href="/mdn/browser-compat-data/commit/e18d3d3ef818c12d950aaf19eb0a37abda165213" rel="noreferrer">e18d3d3</a></code>
<div class="dashboard-break-word lh-condensed">
<blockquote>