-
Notifications
You must be signed in to change notification settings - Fork 15
/
browser_comparison.htm
3123 lines (2779 loc) · 113 KB
/
browser_comparison.htm
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
<!DOCTYPE html>
<html>
<head>
<title>Comparison of Web Browsers</title>
<meta name="description" content="Comparison of Web Browsers">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta name="keywords" content="Technology, Browsers, Firefox, Chrome, Edge, Safari, Brave, Vivaldi, Operating Systems, Desktop Environments, GNOME, KDE, Xfce, Linux, Unix, BSD, Solaris, Windows, macOS, Instant Messengers, Chat, Software, Cloud, Sync, Email, Privacy">
<meta name="author" content="Alphonse Eylenburg">
<link rel="stylesheet" href="style.css">
<style>
:root {
--narrow: calc(var(--wide) / 2);
--wide: calc(var(--browserwidth) / 2);
--browserwidth: 230px;
--legendwidth: 190px;
}
#desktop + label,
#android + label,
#ios + label {
margin-right: 1em;
}
table {
margin-top: 1em;
text-align: center;
border: none;
table-layout: fixed;
font-size: 12px;
}
td {
border: none;
padding: 1px 1px;
vertical-align: top;
}
th {
border: none;
position: -webkit-sticky;
position: sticky;
top: 0px;
z-index: 10;
background-color: white;
font-weight: bold;
}
.legend {
background-color: white;
}
@media (prefers-color-scheme: dark) {
th, .legend {background-color: #222; color: white; }
}
td img {
padding: 15px 0px;
}
tr.noncore td {
hyphens: auto;
word-wrap: break-word;
white-space: normal;
font-size: x-small;
}
.desktop,
.android,
.ios,
.android_wide,
.ios_wide {
visibility: hidden;
white-space: nowrap;
}
#desktop:checked~#theTable .desktop,
#android:checked~#theTable .android_wide,
#ios:checked~#theTable .ios_wide {
visibility: visible;
}
#android:checked~#theTable .android,
#ios:checked~#theTable .ios {
visibility: visible;
}
.legend {
text-align: left;
white-space: nowrap;
padding-right: 5px;
}
.semititle {
text-decoration: underline;
font-weight: bold;
vertical-align: bottom; }
.center {
text-align: center;
}
.tooltip {
text-decoration: underline;
text-decoration-style: dotted;
text-decoration-color: darkred;
}
.tooltip .tooltiptext {
visibility: hidden;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 5px;
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
font-weight: normal;
}
.yes, .green {
background-color: #CEE6BB;
}
.almost {
background-color: #E7F2DD;
}
.no {
background-color: #EBC1AD;
}
.ext {
background-color: #CAEAEE /*aliceblue*/;
}
.hidden {
background-color: #E7DEB1;
color: black;
}
.dropped {
background-color: #F5E0D6;
font-size: 90%;
}
.antifeature {
background-color: thistle; /* use this for anti-freedom features that may be desired by some users but don't deserve a green colour */
}
td.yes, td.green,
td.almost,
td.no,
td.ext,
td.dropped,
td.hidden,
td.antifeature {
border-top: 1px solid ivory;
border-bottom: 1px solid ivory;
}
.firstcolumn {
background-color: white;}
@media (prefers-color-scheme: dark) {
.firstcolumn {
background-color: #222;}
}
@media (min-width: 578px){
.legend{
position: -webkit-sticky;
position: sticky;
left: 0;
}
}
</style>
</head>
<body>
<script src="top.js"></script>
<header>
<p><a href="index.html">← Sitemap</a></p>
</header>
<h1>Comparison of Web Browsers</h1>
<p>This comparison compares the most popular cross-platform (desktop and mobile) browsers and their features. Until 2016, there were the "Big 5" browsers (Firefox, IE/Edge, Chrome, Opera, and Safari), but since then the market has become more fragmented with new browsers such as Brave and Vivaldi becoming more popular. I have decided to limit my test to these 7 browsers as they are both available on PCs and on phones (unlike for example Pale Moon, which stopped developing its mobile version), and also have decided against including "regional" browsers such as Yandex Browser (Russia), Naver Whale (Korea) or the Chinese browsers (Baidu, 360, Sogou, QQ, ...).<br /><br />
The result of the comparison is less clear than last time. In terms of pure features, Vivaldi, Opera and Firefox are at the top of list, followed by Edge and Brave, with Chrome and Safari being the most "bare-bones" and least customizable browsers. Ironically, the "worst" browsers have the highest market shares, thanks to their being preinstalled on iOS and Android.</p>
<h2 class="center">Comparison of Web Browsers</h2>
<p class="center">Source: eylenburg.github.io</p>
<p class="center" style="color: red; font-size: small;">Last updated: 12 December 2024</p>
<input id="desktop" type="checkbox" checked /><label for="desktop"> Show Desktop browsers</label>
<input id="android" type="checkbox" checked /><label for="android"> Show Android browsers</label>
<input id="ios" type="checkbox" checked /><label for="ios"> Show iOS browsers</label>
<table id="theTable">
<colgroup>
<col style="width: var(--legendwidth);">
<col style="border-left: double; width: var(--wide);">
<col style="width: var(--narrow);">
<col style="border-right: double; width: var(--narrow);">
<col style="width: var(--wide);">
<col style="width: var(--wide);">
<col style="border-left: double; width: var(--wide);">
<col style="width: var(--narrow);">
<col style="border-right: double; width: var(--narrow);">
<col style="width: var(--wide);">
<col style="width: var(--narrow);">
<col style="width: var(--narrow);">
<col style="border-left: double; width: var(--wide);">
<col style="width: var(--narrow);">
<col style="border-right: double; width: var(--narrow);">
<col style="width: var(--wide);">
<col style="width: var(--narrow);">
<col style="width: var(--narrow);">
<col style="border-left: double; width: var(--wide);">
<col style="width: var(--narrow);">
<col style="width: var(--narrow);">
</colgroup>
<thead style="font-weight: bold;">
<tr style="height: 1px; display: none;">
<td style="width: var(--legendwidth);"></td>
<td style="width: var(--wide);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--wide);"></td>
<td style="width: var(--wide);"></td>
<td style="width: var(--wide);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--wide);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--wide);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--wide);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--wide);"></td>
<td style="width: var(--narrow);"></td>
<td style="width: var(--narrow);"></td>
</tr>
<tr style="font-size: x-large; border: none;">
<td class="legend"></td>
<th colspan="3">Mozilla Firefox</th>
<th colspan="2">Apple Safari</th>
<th colspan="3">Google Chrome</th>
<th colspan="3">Microsoft Edge</th>
<th colspan="3">Opera</th>
<th colspan="3">Vivaldi</th>
<th colspan="3">Brave</th>
</tr>
</thead>
<tbody>
<tr>
<td class="legend semititle"><br />Developer</td>
<td colspan="3"><img src="pics/logos/browsers/firefox.png" height="100" /></td>
<td colspan="2"><img src="pics/logos/browsers/safari.png" height="100" /></td>
<td colspan="3"><img src="pics/logos/browsers/chrome.svg" height="100" /></td>
<td colspan="3"><img src="pics/logos/browsers/edge.png" height="100" /></td>
<td colspan="3"><img src="pics/logos/browsers/opera.png" height="100" /></td>
<td colspan="3"><img src="pics/logos/browsers/vivaldi.png" height="100" /></td>
<td colspan="3"><img src="pics/logos/browsers/brave.webp" height="110" /></td>
</tr>
<tr>
<td class="legend">Developer name</td>
<td colspan="3" style="font-weight: bold;">Mozilla Corporation & Foundation</td>
<td colspan="2" style="font-weight: bold;">Apple Inc.</td>
<td colspan="3" style="font-weight: bold;">Google LLC (Alphabet Inc.)</td>
<td colspan="3" style="font-weight: bold;">Microsoft Corporation</td>
<td colspan="3" style="font-weight: bold;">Opera Software AS</td>
<td colspan="3" style="font-weight: bold;">Vivaldi Technologies AS</td>
<td colspan="3" style="font-weight: bold;">Brave Software Inc.</td>
</tr>
<tr>
<td class="legend">Developer country</td>
<td colspan="3">United States</td>
<td colspan="2">United States</td>
<td colspan="3">United States</td>
<td colspan="3">United States</td>
<td colspan="3" class="tooltip">Norway<span class="tooltiptext">but owned by Chinese investor</span></td>
<td colspan="3">Norway</td>
<td colspan="3">United States</td>
</tr>
<tr>
<td class="legend tooltip">Privacy ratings<span class="tooltiptext">Sources are linked</span></td>
<td colspan="3"><a href="https://www.scss.tcd.ie/Doug.Leith/pubs/browser_privacy.pdf" target="_blank"><span class="no">bad</span></a> / <a href="https://spyware.neocities.org/articles/index.html" target="_blank"><span class="ext">mixed</span></a> / <a href="https://www.cloudwards.net/?s=browser" target="_blank"</a><span class="yes">good</span></a> / <a href="https://www.kuketz-blog.de/tag/browser/" target="_blank"><span class="ext">mixed</span></a> / <a href="https://tilde.club/~acz/shadow_wiki/browsers.xhtml" target="_blank"><span class="no">bad</span></a></td>
<td colspan="2"><a href="https://www.scss.tcd.ie/Doug.Leith/pubs/browser_privacy.pdf" target="_blank"><span class="no">bad</span></a> / NA / <a href="https://www.cloudwards.net/?s=browser" target="_blank"</a><span class="no">bad</span></a> / <a href="https://www.kuketz-blog.de/tag/browser/" target="_blank"><span class="yes">good</span></a> / NA</td>
<td colspan="3"><a href="https://www.scss.tcd.ie/Doug.Leith/pubs/browser_privacy.pdf" target="_blank"><span class="no">bad</span></a> / <a href="https://spyware.neocities.org/articles/index.html" target="_blank"><span class="no">bad</span></a> / <a href="https://www.cloudwards.net/?s=browser" target="_blank"</a><span class="no">bad</span></a> / <a href="https://www.kuketz-blog.de/tag/browser/" target="_blank"><span class="no">bad</span></a> / <a href="https://tilde.club/~acz/shadow_wiki/browsers.xhtml" target="_blank"><span class="no">bad</span></a></td>
<td colspan="3"><a href="https://www.scss.tcd.ie/Doug.Leith/pubs/browser_privacy.pdf" target="_blank"><span class="no">bad</span></a> / NA / <a href="https://www.cloudwards.net/?s=browser" target="_blank"</a><span class="ext">mixed</span></a> / <a href="https://www.kuketz-blog.de/tag/browser/" target="_blank"><span class="no">bad</span></a> / <a href="https://tilde.club/~acz/shadow_wiki/browsers.xhtml" target="_blank"><span class="no">bad</span></a></td>
<td colspan="3">NA / <a href="https://spyware.neocities.org/articles/index.html" target="_blank"><span class="no">bad</span></a> / <a href="https://www.cloudwards.net/?s=browser" target="_blank"</a><span class="no">bad</span></a> / <a href="https://www.kuketz-blog.de/tag/browser/" target="_blank"><span class="no">bad</span></a> / <a href="https://tilde.club/~acz/shadow_wiki/browsers.xhtml" target="_blank"><span class="no">bad</span></a></td>
<td colspan="3">NA / <a href="https://spyware.neocities.org/articles/index.html" target="_blank"><span class="ext">mixed</span></a> / <a href="https://www.cloudwards.net/?s=browser" target="_blank"</a><span class="yes">good</span></a> / <a href="https://www.kuketz-blog.de/tag/browser/" target="_blank"><span class="ext">mixed</span></a> / <a href="https://tilde.club/~acz/shadow_wiki/browsers.xhtml" target="_blank"><span class="ext">mixed</span></a></td>
<td colspan="3"><a href="https://www.scss.tcd.ie/Doug.Leith/pubs/browser_privacy.pdf" target="_blank"><span class="yes">good</span></a> / <a href="https://spyware.neocities.org/articles/index.html" target="_blank"><span class="no">bad</span></a> / <a href="https://www.cloudwards.net/?s=browser" target="_blank"</a><span class="yes">good</span></a> / <a href="https://www.kuketz-blog.de/tag/browser/" target="_blank"><span class="ext">mixed</span></a> / <a href="https://tilde.club/~acz/shadow_wiki/browsers.xhtml" target="_blank"><span class="no">bad</span></a></td>
</tr>
<tr>
<td class="legend semititle"><br />General technical information</td>
<td colspan="3"></td>
<td colspan="2"></td>
<td colspan="3"></td>
<td colspan="3"></td>
<td colspan="3"></td>
<td colspan="3"></td>
<td colspan="3"></td>
</tr>
<tr>
<td class="legend">Based on </td>
<td colspan="3"><strong>forked from Netscape</strong>, via Mozilla Suite</td>
<td colspan="2"><strong>forked from Konqueror</strong></td>
<td colspan="3"><strong>forked from Safari</strong>, based on Chromium (the unbranded, FOSS version of Chrome)</td>
<td colspan="3"><strong>based on Chromium</strong> since 2020, <br />previously forked from Internet Explorer</td>
<td colspan="3"><strong>based on Chromium</strong> since 2013, <br />previously an independent product</td>
<td colspan="3"><strong>based on Chromium</strong>, <br />founded by ex-CEO of Opera</td>
<td colspan="3"><strong>based on Chromium</strong>, <br />founded by ex-CEO of Mozilla</td>
</tr>
<tr>
<td class="legend">Predecessors and first release</td>
<td colspan="3" style="padding-right: 0px; padding-left: 0px;">1994 Netscape → '98 Mozilla → '02 Firefox</td>
<td colspan="2">2003 Safari</td>
<td colspan="3">2008 Chromium/Chrome</td>
<td colspan="3">1995 Internet Explorer → 2015 Edge</td>
<td colspan="3">1995 Opera</td>
<td colspan="3">2016 Vivaldi</td>
<td colspan="3">2016 Brave</td>
</tr>
<!--
<tr>
<td class="legend">Browser identification (user agent string on PC)</td>
<td colspan="3">Firefox</td>
<td colspan="2">Safari</td>
<td colspan="3">Chrome</td>
<td colspan="3">EDG (until 2020: Edge)</td>
<td colspan="3">OPR (until 2013: Opera)</td>
<td colspan="3">Chrome (until 2019: Vivaldi)</td>
<td colspan="3">Chrome (until 2016: Brave)</td>
</tr>
-->
<tr>
<td class="legend">HTML and Javascript engine</td>
<td colspan="3"><strong>Gecko/SpiderMonkey</strong><br />WebKit/Nitro on iOS</td>
<td colspan="2"><strong>WebKit/Nitro</strong></td>
<td colspan="3"><strong>Blink/V8</strong><br />WebKit/Nitro until 2013 + on iOS</td>
<td colspan="3"><strong>Blink/V8</strong><br />WebKit/Nitro on iOS<br />Trident/Chakra in IE Mode<br />EdgeHTML/Chakra until 2020</td>
<td colspan="3"><strong>Blink/V8</strong><br />WebKit/Nitro on iOS<br />Presto/Carakan until 2013 + in Opera Mini</td>
<td colspan="3"><strong>Blink/V8</strong><br />WebKit/Nitro on iOS</td>
<td colspan="3"><strong>Blink/V8</strong><br />WebKit/Nitro on iOS<br />Gecko/SpiderMonkey in very early versions</td>
</tr>
<tr>
<td class="legend"><span class="semititle">Usage share</span>
<br />Usage share over time<br /><span style="font-style: italic; font-size: x-small; color: #777;">
• worldwide<br />
• all device types included<br />
• source: TheCounter 2002-07, StatCounter 2008-23</span>
</td>
<td colspan="3"><img src="pics/browser_mktshare/Firefox.png" style="padding: none; width: var(--browserwidth);" /></td>
<td colspan="2"><img src="pics/browser_mktshare/Safari.png" style="padding: none; width: var(--browserwidth);" /></td>
<td colspan="3"><img src="pics/browser_mktshare/Chrome.png" style="padding: none; width: var(--browserwidth);" /></td>
<td colspan="3"><img src="pics/browser_mktshare/Edge.png" style="padding: none; width: var(--browserwidth);" /></td>
<td colspan="3"><img src="pics/browser_mktshare/Opera.png" style="padding: none; width: var(--browserwidth);" /></td>
<td colspan="3"><img src="pics/browser_mktshare/Vivaldi.png" style="padding: none; width: var(--browserwidth);" /></td>
<td colspan="3"><img src="pics/browser_mktshare/Brave.png" style="padding: none; width: var(--browserwidth);" /></td>
</tr>
<tr>
<td class="legend">Market share mid-2023</td>
<td colspan="3">2.8% (9% of Firefox users on mobile devices)</td>
<td colspan="2">20.0% (72% of Safari users on mobile devices)</td>
<td colspan="3">62.8% (58% of Chrome users on mobile devices)</td>
<td colspan="3">5.1% (11% of Edge users on mobile devices)</td>
<td colspan="3">3.0% (36% of Opera users on mobile devices)</td>
<td colspan="3">0.1% (estimate based on MAU, no device split available)</td>
<td colspan="3">0.8% (estimate based on MAU, no device split available)</td>
</tr>
<tr>
<td class="legend semititle"><br />Operating system support</td>
<td colspan="3"></td>
<td colspan="2"></td>
<td colspan="3"></td>
<td colspan="3"></td>
<td colspan="3"></td>
<td colspan="3"></td>
<td colspan="3"></td>
</tr>
<tr>
<td class="legend">Windows</td>
<td colspan="3" class="yes">Yes <!--<span class="tooltip">(also portable)<span class="tooltiptext">Inofficial builds (not provided or supported by Mozilla)</span></span>--></td>
<td colspan="2" class="dropped">Dropped</td>
<td colspan="3" class="yes">Yes <!--<span class="tooltip">(also portable)<span class="tooltiptext">Inofficial builds (not provided or supported by Google)</span></span>--></td>
<td colspan="3" class="yes">Yes (preinstalled)</td>
<td colspan="3" class="yes">Yes <!--(also portable)--></td>
<td colspan="3" class="yes">Yes <!--(also portable)--></td>
<td colspan="3" class="yes">Yes <!--<span class="tooltip">(also portable)<span class="tooltiptext">Inofficial builds (not provided or supported by Brave Software)</span></span>--></td>
</tr>
<tr>
<td class="legend">macOS</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="2" class="yes">Yes (preinstalled)</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
</tr>
<tr>
<td class="legend">GNU/Linux</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="2" class="no">No</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
</tr>
<tr>
<td class="legend">BSD</td>
<td colspan="3" class="almost tooltip">Free/Net/Open/DragonFlyBSD</span><span class="tooltiptext">All inofficial builds (not provided or supported by Mozilla). <br />FreeBSD, NetBSD, and OpenBSD are mentioned as Tier-3 targets by Mozilla: <br />https://firefox-source-docs.mozilla.org/contributing/build/supported.html</span></td>
<td colspan="2" class="no">No</td>
<td colspan="3" class="no">No</td>
<td colspan="3" class="no">No</td>
<td colspan="3" class="dropped">Dropped: Free/<span class="tooltip">Net/OpenBSD<span class="tooltiptext">NetBSD and OpenBSD had only had inofficial ports (not provided or supported by Opera Software)</span></span></td>
<td colspan="3" class="no">No</td>
<td colspan="3" class="no">No</td>
</tr>
<tr>
<td class="legend">Unix System V</td>
<td colspan="3" class="almost tooltip">Solaris, Illumos. <span class="dropped">Dropped: HP-UX, AIX, ...</span><span class="tooltiptext">Formerly also for IRIX and Unixware. All inofficial builds (not provided or supported by Mozilla). <br />Solaris is mentioned as a Tier-3 target by Mozilla: <br />https://firefox-source-docs.mozilla.org/contributing/build/supported.html</span></td>
<td colspan="2" class="no">No</td>
<td colspan="3" class="no">No</td>
<td colspan="3" class="no">No</td>
<td colspan="3" class="dropped">Dropped: Solaris</td>
<td colspan="3" class="no">No</td>
<td colspan="3" class="no">No</td>
</tr>
<tr>
<td class="legend">Android</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="2" class="no">No</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
</tr>
<tr>
<td class="legend">iOS</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="2" class="yes">Yes (preinstalled)</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
<td colspan="3" class="yes">Yes</td>
</tr>
<tr>
<td class="legend">Other modern operating systems</td>
<td colspan="3" class="dropped">Dropped: <span class="tooltip">AmigaOS, ArcaOS (OS/2), Haiku (BeOS), OpenVMS, QNX, and RISC OS<span class="tooltiptext">Inofficial builds (not provided or supported by Mozilla)</span></span></td>
<td colspan="2" class="no">No</td>
<td colspan="3" class="yes">Chrome OS, Fuchsia</td>
<td colspan="3" class="yes">Xbox System Software</td>
<td colspan="3" class="dropped">Dropped: ArcaOS (OS/2), Haiku (BeOS), and QNX</td>
<td colspan="3" class="no">No</td>
<td colspan="3" class="no">No</td>
</tr>
<tr>
<td class="legend">Legacy operating systems</td>
<td colspan="3" class="dropped">Dropped: Maemo, Firefox OS, <span class="tooltip">SkyOS<span class="tooltiptext">Inofficial builds (not provided or supported by Mozilla)</span></span></td>
<td colspan="2" class="no">No</td>
<td colspan="3" class="no">No</td>
<td colspan="3" class="dropped">Dropped: Windows Phone/Mobile</td>
<td colspan="3" class="dropped"><span class="almost">Dormant: <span class="tooltip">Opera Mini for basic phones<span class="tooltiptext">Opera Mini for basic phones is not actively developed anymore, but is still available for download and comes preinstalled on some feature phones. Rendering is down server-side using the Presto engine.</span></span></span> /<br />Dropped: MacOS Classic, Wii, Nintendo DS, <br />MeeGo, EPOC/Symbian, Bada, BlackBerry, <br />Windows Mobile/Phone, Linux-based TVs</td>
<td colspan="3" class="no">No</td>
<td colspan="3" class="no">No</td>
</tr>
<tr>
<td class="legend semititle" style="font-size: large;">Feature Comparison</td>
<td colspan="3"></td>
<td colspan="2"></td>
<td colspan="3"></td>
<td colspan="3"></td>
<td colspan="3"></td>
<td colspan="3"></td>
<td colspan="3"></td>
</tr>
<tr style="background-color: lightgrey; color: black; font-weight: bold;">
<td class="legend firstcolumn"></td>
<td class="desktop">Win/Mac/Linux</td>
<td class="android"><span class="tooltip">Android<span class="tooltiptext">This comparison looked at <em>Firefox</em> and not <em>Firefox Focus</em> or <em>Firefox Klar</em>.</span></span></td>
<td class="ios"><span class="tooltip">iOS<span class="tooltiptext">This comparison looked at <em>Firefox</em> and not <em>Firefox Focus</em>.</span></span></td>
<td class="desktop">Mac</td>
<td class="ios_wide">iOS</td>
<td class="desktop">Win/Mac/Linux</td>
<td class="android">Android</td>
<td class="ios">iOS</td>
<td class="desktop">Win/Mac/Linux</td>
<td class="android">Android</td>
<td class="ios">iOS</td>
<td class="desktop">Win/Mac/Linux</td>
<td class="android"><span class="tooltip">Android<span class="tooltiptext">This comparison looked at <em>Opera</em> and not <em>Opera Mini</em> or <em>Opera Touch</em>.</span></span></td>
<td class="ios"><span class="tooltip">iOS<span class="tooltiptext">This comparison looked at <em>Opera</em> (formerly <em>Opera Touch</em>); dropped features may refer to <em>Opera Mini</em>.</span></span></td>
<td class="desktop">Win/Mac/Linux</td>
<td class="android">Android</td>
<td class="ios">iOS</td>
<td class="desktop">Win/Mac/Linux</td>
<td class="android">Android</td>
<td class="ios">iOS</td>
</tr>
<tr>
<td class="legend semititle"><br />Bookmarking & archiving</td>
<!-- Firefox -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Safari -->
<td class="desktop"></td>
<td class="ios_wide"></td>
<!-- Chrome -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Edge -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Opera -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Vivaldi -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Brave -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
</tr>
<tr>
<td class="legend">Bookmarks bar or speed dial with folders</td>
<!-- Firefox -->
<td class="desktop yes">Yes<span style="font-size: 90%;"> (bookmarks bar)</span></td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Safari -->
<td class="desktop yes">Yes<span style="font-size: 90%;"> (bookmarks bar)</span></td>
<td class="ios_wide no">No</td>
<!-- Chrome -->
<td class="desktop yes">Yes<span style="font-size: 90%;"> (bookmarks bar)</span></td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Edge -->
<td class="desktop yes">Yes<span style="font-size: 90%;"> (bookmarks bar)</span></td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Opera -->
<td class="desktop yes">Yes (both)</td>
<td class="android yes">Yes</td>
<td class="ios dropped">Dropped</td>
<!-- Vivaldi -->
<td class="desktop yes">Yes (both)</td>
<td class="android yes">Yes</td>
<td class="ios no">No</td>
<!-- Brave -->
<td class="desktop yes">Yes<span style="font-size: 90%;"> (bookmarks bar)</span></td>
<td class="android no">No</td>
<td class="ios no">No</td>
</tr>
<tr>
<td class="legend">Session manager</td>
<!-- Firefox -->
<td class="desktop ext">with extension</td>
<td class="android yes tooltip">Yes<span class="tooltiptext">Collections</span></td>
<td class="ios no">No</td>
<!-- Safari -->
<td class="desktop ext">with extension</td>
<td class="ios_wide no">No</td>
<!-- Chrome -->
<td class="desktop ext">with extension</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Edge -->
<td class="desktop ext"><span class="dropped"><span class="tooltip">Dropped<span class="tooltiptext">dropped in version 79</span></span></span> <span class="tooltip"><small>(w/ ext.)</small><span class="tooltiptext">possible with 3rd party browser extension</span></span></td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Opera -->
<td class="desktop ext"><span class="dropped"><span class="tooltip">Dropped<span class="tooltiptext">dropped in version 15</span></span></span> <span class="tooltip"><small>(w/ ext.)</small><span class="tooltiptext">possible with 3rd party browser extension</span></span></td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Vivaldi -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Brave -->
<td class="desktop ext">with extension</td>
<td class="android no">No</td>
<td class="ios no">No</td>
</tr>
<tr>
<td class="legend">Download/screenshot whole website</td>
<!-- Firefox -->
<td class="desktop yes">HTML/PNG</td>
<td class="android yes">PDF</td>
<td class="ios no">No</td>
<!-- Safari -->
<td class="desktop yes">Webarchive/PDF</td>
<td class="ios_wide no">No</td>
<!-- Chrome -->
<td class="desktop yes">(M)HTML</td>
<td class="android yes">MHTML</td>
<td class="ios no">No</td>
<!-- Edge -->
<td class="desktop yes">MHTML/PNG</td>
<td class="android yes" style="font-size: 80%; vertical-align: middle;">MHTML/PNG</td>
<td class="ios no">No</td>
<!-- Opera -->
<td class="desktop yes">(M)HTML/PDF</td>
<td class="android yes" style="font-size: 80%; vertical-align: middle;">(M)HTML/PDF</td>
<td class="ios no">No</td>
<!-- Vivaldi -->
<td class="desktop yes">(M)HTML/PNG/JPG</td>
<td class="android yes" style="font-size: 80%; vertical-align: middle;">MHTML/PNG</td>
<td class="ios no">No</td>
<!-- Brave -->
<td class="desktop yes">(M)HTML</td>
<td class="android yes" style="font-size: 80%; vertical-align: middle;">MHTML/PNG</td>
<td class="ios yes">PDF</td>
</tr>
<tr>
<td class="legend semititle"><br />Search</td>
<!-- Firefox -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Safari -->
<td class="desktop"></td>
<td class="ios_wide"></td>
<!-- Chrome -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Edge -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Opera -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Vivaldi -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Brave -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
</tr>
<tr>
<td class="legend">Default search engine</td>
<td colspan="3">Google</td>
<td colspan="2">Google</td>
<td colspan="3">Google</td>
<td colspan="3">Bing</td>
<td colspan="3">Google</td>
<td colspan="3">Bing</td>
<td colspan="3">Brave Search</td>
</tr>
<tr>
<td class="legend">Can delete/hide preinstalled search engines</td>
<!-- Firefox -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios no">No</td>
<!-- Safari -->
<td class="desktop no">No</td>
<td class="ios_wide no">No</td>
<!-- Chrome -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Edge -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Opera -->
<td class="desktop dropped"><span class="tooltip">Dropped<span class="tooltiptext">dropped in version 15</span></span></td>
<td class="android dropped">Dropped</td>
<td class="ios no">No</td>
<!-- Vivaldi -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Brave -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
</tr>
<tr>
<td class="legend">Can add new search engines</td>
<!-- Firefox -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
<!-- Safari -->
<td class="desktop no">No</td>
<td class="ios_wide ext">with extension</td>
<!-- Chrome -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Edge -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Opera -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios dropped">Dropped</td>
<!-- Vivaldi -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Brave -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios yes">Yes</td>
</tr>
<tr>
<td class="legend tooltip">Search keywords<span class="tooltiptext">e.g. type "b <text>" to search for <text> in Bing</span></td>
<!-- Firefox -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Safari -->
<td class="desktop no">No</td>
<td class="ios_wide ext">with extension</td>
<!-- Chrome -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Edge -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Opera -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Vivaldi -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios no">No</td>
<!-- Brave -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
</tr>
<tr>
<td class="legend semititle"><br />Tracking</td>
<!-- Firefox -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Safari -->
<td class="desktop"></td>
<td class="ios_wide"></td>
<!-- Chrome -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Edge -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Opera -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Vivaldi -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
<!-- Brave -->
<td class="desktop"></td>
<td class="android"></td>
<td class="ios"></td>
</tr>
<tr>
<td class="legend tooltip">Tracking protection<span class="tooltiptext">can include blocking of tracking scripts, tracking cookies, URL tracking parameters, fingerprinting attempts via canvas or supercookies, and more</span></td>
<!-- Firefox -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
<!-- Safari -->
<td class="desktop yes">Yes</td>
<td class="ios_wide yes">Yes</td>
<!-- Chrome -->
<td class="desktop ext">with extension</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Edge -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
<!-- Opera -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
<!-- Vivaldi -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
<!-- Brave -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
</tr>
<tr>
<td class="legend tooltip">Ad blocking (cosmetic, alongside trackers)<span class="tooltiptext">incl. blocking of "acceptable ads" and "non-intrusive ads"</span></td>
<!-- Firefox -->
<td class="desktop ext">with extension</td>
<td class="android ext">w/ ext.</td>
<td class="ios no">No</td>
<!-- Safari -->
<td class="desktop ext">with extension</td>
<td class="ios_wide ext">with extension</td>
<!-- Chrome -->
<td class="desktop ext">with extension</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Edge -->
<td class="desktop ext">with extension</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
<!-- Opera -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
<!-- Vivaldi -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
<!-- Brave -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
</tr>
<tr>
<td class="legend">Can clear cookies on exit</td>
<!-- Firefox -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios no">No</td>
<!-- Safari -->
<td class="desktop no">No</td>
<td class="ios_wide no">No</td>
<!-- Chrome -->
<td class="desktop yes">Yes</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<!-- Edge -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios no">No</td>
<!-- Opera -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios no">No</td>
<!-- Vivaldi -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios no">No</td>
<!-- Brave -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios no">No</td>
</tr>
<!--
<tr>
<td class="legend">Redirect Google AMP pages to original URL</td>
<td class="desktop ext">with extension</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<td class="desktop no">No</td>
<td class="ios_wide ext">with extension</td>
<td class="desktop ext">with extension</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<td class="desktop ext">with extension</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<td class="desktop ext">with extension</td>
<td class="android no">No</td>
<td class="ios no">No</td>
<td class="desktop no">No</td>
<td class="android_wide no">No</td>
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes">Yes</td>
</tr>
-->
<tr>
<td class="legend">CNAME uncloaking support</td>
<!-- Firefox -->
<td class="desktop yes">Yes</td>
<td class="android yes">Yes</td>
<td class="ios yes tooltip">Yes<span class="tooltiptext">WebKit's "Intelligent Tracking Protection" applies to all iOS browsers</span></td>
<!-- Safari -->
<td class="desktop yes">Yes</td>