summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/fivefilters/readability.php/test/test-pages/wikipedia/source.html
blob: 1a1338dfbfda7a8dd4f219ff885752f74e7e0241 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
<!DOCTYPE html>
<html class="client-nojs" lang="en" dir="ltr">

<head>
    <meta charset="UTF-8" />
    <title>Mozilla - Wikipedia</title>
    <script>
        document.documentElement.className = document.documentElement.className.replace(/(^|\s)client-nojs(\s|$)/, "$1client-js$2");
    </script>
    <script>
        (window.RLQ = window.RLQ || []).push(function() {
            mw.config.set({
                "wgCanonicalNamespace": "",
                "wgCanonicalSpecialPageName": false,
                "wgNamespaceNumber": 0,
                "wgPageName": "Mozilla",
                "wgTitle": "Mozilla",
                "wgCurRevisionId": 746574460,
                "wgRevisionId": 746574460,
                "wgArticleId": 36754915,
                "wgIsArticle": true,
                "wgIsRedirect": false,
                "wgAction": "view",
                "wgUserName": null,
                "wgUserGroups": ["*"],
                "wgCategories": ["CS1 maint: Unfit url", "All articles with unsourced statements", "Articles with unsourced statements from August 2015", "Articles containing potentially dated statements from April 2015", "All articles containing potentially dated statements", "Articles with unsourced statements from July 2015", "Commons category with page title same as on Wikidata", "Mozilla", "Netscape", "Projects established in 1998"],
                "wgBreakFrames": false,
                "wgPageContentLanguage": "en",
                "wgPageContentModel": "wikitext",
                "wgSeparatorTransformTable": ["", ""],
                "wgDigitTransformTable": ["", ""],
                "wgDefaultDateFormat": "dmy",
                "wgMonthNames": ["", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
                "wgMonthNamesShort": ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
                "wgRelevantPageName": "Mozilla",
                "wgRelevantArticleId": 36754915,
                "wgRequestId": "WBL2vApAME0AAEo9USUAAAIO",
                "wgIsProbablyEditable": true,
                "wgRestrictionEdit": [],
                "wgRestrictionMove": [],
                "wgFlaggedRevsParams": {
                    "tags": {
                        "status": {
                            "levels": 1,
                            "quality": 2,
                            "pristine": 3
                        }
                    }
                },
                "wgStableRevisionId": null,
                "wgWikiEditorEnabledModules": {
                    "toolbar": true,
                    "dialogs": true,
                    "preview": false,
                    "publish": false
                },
                "wgBetaFeaturesFeatures": [],
                "wgMediaViewerOnClick": true,
                "wgMediaViewerEnabledByDefault": true,
                "wgVisualEditor": {
                    "pageLanguageCode": "en",
                    "pageLanguageDir": "ltr",
                    "usePageImages": true,
                    "usePageDescriptions": true
                },
                "wgPreferredVariant": "en",
                "wgMFDisplayWikibaseDescriptions": {
                    "search": true,
                    "nearby": true,
                    "watchlist": true,
                    "tagline": false
                },
                "wgRelatedArticles": null,
                "wgRelatedArticlesUseCirrusSearch": true,
                "wgRelatedArticlesOnlyUseCirrusSearch": false,
                "wgULSCurrentAutonym": "English",
                "wgNoticeProject": "wikipedia",
                "wgCentralNoticeCookiesToDelete": [],
                "wgCentralNoticeCategoriesUsingLegacy": ["Fundraising", "fundraising"],
                "wgCategoryTreePageCategoryOptions": "{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}",
                "wgWikibaseItemId": "Q9661",
                "wgCentralAuthMobileDomain": false,
                "wgVisualEditorToolbarScrollOffset": 0,
                "wgEditSubmitButtonLabelPublish": false
            });
            mw.loader.state({
                "ext.globalCssJs.user.styles": "ready",
                "ext.globalCssJs.site.styles": "ready",
                "site.styles": "ready",
                "noscript": "ready",
                "user.styles": "ready",
                "user.cssprefs": "ready",
                "user": "ready",
                "user.options": "loading",
                "user.tokens": "loading",
                "ext.cite.styles": "ready",
                "wikibase.client.init": "ready",
                "ext.visualEditor.desktopArticleTarget.noscript": "ready",
                "ext.uls.interlanguage": "ready",
                "ext.wikimediaBadges": "ready",
                "mediawiki.legacy.shared": "ready",
                "mediawiki.legacy.commonPrint": "ready",
                "mediawiki.sectionAnchor": "ready",
                "mediawiki.skinning.interface": "ready",
                "skins.vector.styles": "ready",
                "ext.globalCssJs.user": "ready",
                "ext.globalCssJs.site": "ready"
            });
            mw.loader.implement("user.options@0j3lz3q", function($, jQuery, require, module) {
                mw.user.options.set({
                    "variant": "en"
                });
            });
            mw.loader.implement("user.tokens@1dqfd7l", function($, jQuery, require, module) {
                mw.user.tokens.set({
                    "editToken": "+\\",
                    "patrolToken": "+\\",
                    "watchToken": "+\\",
                    "csrfToken": "+\\"
                }); /*@nomin*/ ;

            });
            mw.loader.load(["mediawiki.page.startup", "mediawiki.legacy.wikibits", "ext.centralauth.centralautologin", "mmv.head", "ext.visualEditor.desktopArticleTarget.init", "ext.uls.interface", "ext.quicksurveys.init", "skins.vector.js"]);
        });
    </script>
    <link rel="stylesheet" href="/w/load.php?debug=false&amp;lang=en&amp;modules=ext.cite.styles%7Cext.gadget.ReferenceTooltips%2Cfeatured-articles-links%2Cteahouse%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.sectionAnchor%7Cmediawiki.skinning.interface%7Cskins.vector.styles%7Cwikibase.client.init&amp;only=styles&amp;skin=vector" />
    <script async="" src="/w/load.php?debug=false&amp;lang=en&amp;modules=startup&amp;only=scripts&amp;skin=vector"></script>
    <meta name="ResourceLoaderDynamicStyles" content="" />
    <link rel="stylesheet" href="/w/load.php?debug=false&amp;lang=en&amp;modules=site.styles&amp;only=styles&amp;skin=vector" />
    <meta name="generator" content="MediaWiki 1.28.0-wmf.23" />
    <meta name="referrer" content="origin-when-cross-origin" />
    <link rel="alternate" href="android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/Mozilla" />
    <link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=Mozilla&amp;action=edit" />
    <link rel="edit" title="Edit this page" href="/w/index.php?title=Mozilla&amp;action=edit" />
    <link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png" />
    <link rel="shortcut icon" href="/static/favicon/wikipedia.ico" />
    <link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
    <link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" />
    <link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
    <link rel="canonical" href="https://en.wikipedia.org/wiki/Mozilla" />
    <link rel="dns-prefetch" href="//login.wikimedia.org" />
    <link rel="dns-prefetch" href="//meta.wikimedia.org" />
</head>

<body class="mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-Mozilla rootpage-Mozilla skin-vector action-view feature-footer-v2">
    <div id="mw-page-base" class="noprint"></div>
    <div id="mw-head-base" class="noprint"></div>
    <div id="content" class="mw-body" role="main">
        <a id="top"></a>

        <div id="siteNotice">
            <!-- CentralNotice -->
        </div>
        <div class="mw-indicators">
        </div>
        <h1 id="firstHeading" class="firstHeading" lang="en">Mozilla</h1>
        <div id="bodyContent" class="mw-body-content">
            <div id="siteSub">From Wikipedia, the free encyclopedia</div>
            <div id="contentSub"></div>
            <div id="jump-to-nav" class="mw-jump">
                Jump to: <a href="#mw-head">navigation</a>, <a href="#p-search">search</a>
            </div>
            <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
                <div role="note" class="hatnote">See also: <a href="/wiki/Mozilla_Foundation" title="Mozilla Foundation">Mozilla Foundation</a> and <a href="/wiki/Mozilla_Corporation" title="Mozilla Corporation">Mozilla Corporation</a></div>
                <table class="infobox vcard" style="width:22em">
                    <caption class="fn org">Mozilla</caption>
                    <tr>
                        <td colspan="2" class="logo" style="text-align:center">
                            <a href="/wiki/File:Mozilla_dinosaur_head_logo.png" class="image"><img alt="Mozilla dinosaur head logo.png" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Mozilla_dinosaur_head_logo.png/200px-Mozilla_dinosaur_head_logo.png" width="200" height="143" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Mozilla_dinosaur_head_logo.png/300px-Mozilla_dinosaur_head_logo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Mozilla_dinosaur_head_logo.png/400px-Mozilla_dinosaur_head_logo.png 2x" data-file-width="1300" data-file-height="929" /></a>
                        </td>
                    </tr>
                    <tr>
                        <th scope="row" style="padding-right:0.5em;">Industry</th>
                        <td class="category" style="line-height:1.35em;"><a href="/wiki/Open-source_software" title="Open-source software">Open-source software</a></td>
                    </tr>
                    <tr>
                        <th scope="row" style="padding-right:0.5em;">Founded</th>
                        <td style="line-height:1.35em;">February&#160;28, 1998<span class="noprint">; 18 years ago</span><span style="display:none">&#160;(<span class="bday dtstart published updated">1998-02-28</span>)</span>
                        </td>
                    </tr>
                    <tr>
                        <th scope="row" style="padding-right:0.5em;">Founder</th>
                        <td class="agent" style="line-height:1.35em;"><a href="/wiki/Netscape" title="Netscape">Netscape Communications Corporation</a></td>
                    </tr>
                    <tr>
                        <th scope="row" style="padding-right:0.5em;">Products</th>
                        <td style="line-height:1.35em;"><a href="/wiki/Mozilla_Application_Suite" title="Mozilla Application Suite">Mozilla Application Suite</a></td>
                    </tr>
                    <tr>
                        <th scope="row" style="padding-right:0.5em;"><a href="/wiki/Division_(business)" title="Division (business)">Divisions</a></th>
                        <td style="line-height:1.35em;">
                            <div class="plainlist">
                                <ul>
                                    <li><a href="/wiki/Mozilla_Corporation" title="Mozilla Corporation">Mozilla Corporation</a></li>
                                    <li><a href="/wiki/Mozilla_Foundation" title="Mozilla Foundation">Mozilla Foundation</a></li>
                                </ul>
                            </div>
                        </td>
                    </tr>
                    <tr>
                        <th scope="row" style="padding-right:0.5em;">Website</th>
                        <td style="line-height:1.35em;"><span class="url"><a rel="nofollow" class="external text" href="http://mozilla.org/,%20https://www.mozilla.org/tr/">mozilla<wbr />.org<wbr />/,%20https:<wbr />//www<wbr />.mozilla<wbr />.org<wbr />/tr<wbr />/</a></span></td>
                    </tr>
                </table>
                <p><b>Mozilla</b> is a <a href="/wiki/Free_software" title="Free software">free-software</a> community, created in 1998 by members of <a href="/wiki/Netscape" title="Netscape">Netscape</a>. The Mozilla community uses, develops, spreads and supports Mozilla products, thereby promoting exclusively free software and open standards, with only minor exceptions.<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup> The community is supported institutionally by the <a href="/wiki/Mozilla_Foundation" title="Mozilla Foundation">Mozilla Foundation</a> and its tax-paying subsidiary, the <a href="/wiki/Mozilla_Corporation" title="Mozilla Corporation">Mozilla Corporation</a>.<sup id="cite_ref-2" class="reference"><a href="#cite_note-2">[2]</a></sup></p>
                <p><a href="/wiki/List_of_Mozilla_products" title="List of Mozilla products">Mozilla produces many products</a> such as the <a href="/wiki/Firefox" title="Firefox">Firefox</a> web browser, <a href="/wiki/Mozilla_Thunderbird" title="Mozilla Thunderbird">Thunderbird</a> e-mail client, <a href="/wiki/Firefox_Mobile" class="mw-redirect" title="Firefox Mobile">Firefox Mobile</a> web browser, <a href="/wiki/Firefox_OS" title="Firefox OS">Firefox OS</a> mobile operating system, <a href="/wiki/Bugzilla" title="Bugzilla">Bugzilla</a> bug tracking system and other projects.</p>
                <p></p>
                <div id="toc" class="toc">
                    <div id="toctitle">
                        <h2>Contents</h2>
                    </div>
                    <ul>
                        <li class="toclevel-1 tocsection-1"><a href="#History"><span class="tocnumber">1</span> <span class="toctext">History</span></a>
                            <ul>
                                <li class="toclevel-2 tocsection-2"><a href="#Eich_CEO_promotion_controversy"><span class="tocnumber">1.1</span> <span class="toctext">Eich CEO promotion controversy</span></a></li>
                            </ul>
                        </li>
                        <li class="toclevel-1 tocsection-3"><a href="#Values"><span class="tocnumber">2</span> <span class="toctext">Values</span></a>
                            <ul>
                                <li class="toclevel-2 tocsection-4"><a href="#Pledge"><span class="tocnumber">2.1</span> <span class="toctext">Pledge</span></a></li>
                            </ul>
                        </li>
                        <li class="toclevel-1 tocsection-5"><a href="#Software"><span class="tocnumber">3</span> <span class="toctext">Software</span></a>
                            <ul>
                                <li class="toclevel-2 tocsection-6"><a href="#Firefox"><span class="tocnumber">3.1</span> <span class="toctext">Firefox</span></a></li>
                                <li class="toclevel-2 tocsection-7"><a href="#Firefox_Mobile"><span class="tocnumber">3.2</span> <span class="toctext">Firefox Mobile</span></a></li>
                                <li class="toclevel-2 tocsection-8"><a href="#Firefox_OS"><span class="tocnumber">3.3</span> <span class="toctext">Firefox OS</span></a></li>
                                <li class="toclevel-2 tocsection-9"><a href="#Thunderbird"><span class="tocnumber">3.4</span> <span class="toctext">Thunderbird</span></a></li>
                                <li class="toclevel-2 tocsection-10"><a href="#SeaMonkey"><span class="tocnumber">3.5</span> <span class="toctext">SeaMonkey</span></a></li>
                                <li class="toclevel-2 tocsection-11"><a href="#Bugzilla"><span class="tocnumber">3.6</span> <span class="toctext">Bugzilla</span></a></li>
                                <li class="toclevel-2 tocsection-12"><a href="#Components"><span class="tocnumber">3.7</span> <span class="toctext">Components</span></a>
                                    <ul>
                                        <li class="toclevel-3 tocsection-13"><a href="#NSS"><span class="tocnumber">3.7.1</span> <span class="toctext">NSS</span></a></li>
                                        <li class="toclevel-3 tocsection-14"><a href="#SpiderMonkey"><span class="tocnumber">3.7.2</span> <span class="toctext">SpiderMonkey</span></a></li>
                                        <li class="toclevel-3 tocsection-15"><a href="#Rhino"><span class="tocnumber">3.7.3</span> <span class="toctext">Rhino</span></a></li>
                                        <li class="toclevel-3 tocsection-16"><a href="#Gecko"><span class="tocnumber">3.7.4</span> <span class="toctext">Gecko</span></a></li>
                                        <li class="toclevel-3 tocsection-17"><a href="#Rust"><span class="tocnumber">3.7.5</span> <span class="toctext">Rust</span></a></li>
                                        <li class="toclevel-3 tocsection-18"><a href="#XULRunner"><span class="tocnumber">3.7.6</span> <span class="toctext">XULRunner</span></a></li>
                                        <li class="toclevel-3 tocsection-19"><a href="#pdf.js"><span class="tocnumber">3.7.7</span> <span class="toctext">pdf.js</span></a></li>
                                        <li class="toclevel-3 tocsection-20"><a href="#Shumway"><span class="tocnumber">3.7.8</span> <span class="toctext">Shumway</span></a></li>
                                    </ul>
                                </li>
                            </ul>
                        </li>
                        <li class="toclevel-1 tocsection-21"><a href="#Other_activities"><span class="tocnumber">4</span> <span class="toctext">Other activities</span></a>
                            <ul>
                                <li class="toclevel-2 tocsection-22"><a href="#Mozilla_VR"><span class="tocnumber">4.1</span> <span class="toctext">Mozilla VR</span></a></li>
                                <li class="toclevel-2 tocsection-23"><a href="#Mozilla_Persona"><span class="tocnumber">4.2</span> <span class="toctext">Mozilla Persona</span></a></li>
                                <li class="toclevel-2 tocsection-24"><a href="#Mozilla_Location_Service"><span class="tocnumber">4.3</span> <span class="toctext">Mozilla Location Service</span></a></li>
                                <li class="toclevel-2 tocsection-25"><a href="#Webmaker"><span class="tocnumber">4.4</span> <span class="toctext">Webmaker</span></a></li>
                                <li class="toclevel-2 tocsection-26"><a href="#Mozilla_Developer_Network"><span class="tocnumber">4.5</span> <span class="toctext">Mozilla Developer Network</span></a></li>
                            </ul>
                        </li>
                        <li class="toclevel-1 tocsection-27"><a href="#Community"><span class="tocnumber">5</span> <span class="toctext">Community</span></a>
                            <ul>
                                <li class="toclevel-2 tocsection-28"><a href="#Local_communities"><span class="tocnumber">5.1</span> <span class="toctext">Local communities</span></a></li>
                                <li class="toclevel-2 tocsection-29"><a href="#Mozilla_Reps"><span class="tocnumber">5.2</span> <span class="toctext">Mozilla Reps</span></a></li>
                                <li class="toclevel-2 tocsection-30"><a href="#Conferences_and_events"><span class="tocnumber">5.3</span> <span class="toctext">Conferences and events</span></a>
                                    <ul>
                                        <li class="toclevel-3 tocsection-31"><a href="#Mozilla_Festival"><span class="tocnumber">5.3.1</span> <span class="toctext">Mozilla Festival</span></a></li>
                                        <li class="toclevel-3 tocsection-32"><a href="#MozCamps"><span class="tocnumber">5.3.2</span> <span class="toctext">MozCamps</span></a></li>
                                        <li class="toclevel-3 tocsection-33"><a href="#Mozilla_Summit"><span class="tocnumber">5.3.3</span> <span class="toctext">Mozilla Summit</span></a></li>
                                    </ul>
                                </li>
                            </ul>
                        </li>
                        <li class="toclevel-1 tocsection-34"><a href="#See_also"><span class="tocnumber">6</span> <span class="toctext">See also</span></a></li>
                        <li class="toclevel-1 tocsection-35"><a href="#References"><span class="tocnumber">7</span> <span class="toctext">References</span></a></li>
                        <li class="toclevel-1 tocsection-36"><a href="#External_links"><span class="tocnumber">8</span> <span class="toctext">External links</span></a></li>
                    </ul>
                </div>
                <p></p>
                <h2><span class="mw-headline" id="History">History</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=1" title="Edit section: History">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h2>
                <p>On January 23, 1998, Netscape made two announcements: first, that <a href="/wiki/Netscape_Communicator" title="Netscape Communicator">Netscape Communicator</a> will be free; second, that the source code will also be free.<sup id="cite_ref-3" class="reference"><a href="#cite_note-3">[3]</a></sup> One day later, <a href="/wiki/Jamie_Zawinski" title="Jamie Zawinski">Jamie Zawinski</a> from Netscape registered <span style="font-family: monospace, monospace;">mozilla.org</span>.<sup id="cite_ref-4" class="reference"><a href="#cite_note-4">[4]</a></sup> The project was named Mozilla after the original code name of the <a href="/wiki/Netscape_Navigator" title="Netscape Navigator">Netscape Navigator</a> browser which is a blending of "<a href="/wiki/Mosaic_(web_browser)" title="Mosaic (web browser)">Mosaic</a> and <a href="/wiki/Godzilla" title="Godzilla">Godzilla</a>"<sup id="cite_ref-google_5-0" class="reference"><a href="#cite_note-google-5">[5]</a></sup> and used to co-ordinate the development of the <a href="/wiki/Mozilla_Application_Suite" title="Mozilla Application Suite">Mozilla Application Suite</a>, the <a href="/wiki/Open_source" class="mw-redirect" title="Open source">open source</a> version of Netscape's internet software, <a href="/wiki/Netscape_Communicator" title="Netscape Communicator">Netscape Communicator</a>.<sup id="cite_ref-Mozilla_Launch_Announcement_6-0" class="reference"><a href="#cite_note-Mozilla_Launch_Announcement-6">[6]</a></sup><sup id="cite_ref-7" class="reference"><a href="#cite_note-7">[7]</a></sup> Jamie Zawinski says he came up with the name "Mozilla" at a Netscape staff meeting.<sup id="cite_ref-8" class="reference"><a href="#cite_note-8">[8]</a></sup><sup id="cite_ref-9" class="reference"><a href="#cite_note-9">[9]</a></sup> A small group of Netscape employees were tasked with coordination of the new community.</p>
                <p>Originally, Mozilla aimed to be a technology provider for companies, such as Netscape, who would commercialize their open source code.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10">[10]</a></sup> When <a href="/wiki/AOL" title="AOL">AOL</a> (Netscape's parent company) greatly reduced its involvement with Mozilla in July 2003, the <a href="/wiki/Mozilla_Foundation" title="Mozilla Foundation">Mozilla Foundation</a> was designated the legal steward of the project.<sup id="cite_ref-11" class="reference"><a href="#cite_note-11">[11]</a></sup> Soon after, Mozilla deprecated the Mozilla Suite in favor of creating independent applications for each function, primarily the <a href="/wiki/Firefox" title="Firefox">Firefox</a> web browser and the <a href="/wiki/Mozilla_Thunderbird" title="Mozilla Thunderbird">Thunderbird</a> email client, and moved to supply them directly to the public.<sup id="cite_ref-12" class="reference"><a href="#cite_note-12">[12]</a></sup></p>
                <p>Recently, Mozilla's activities have expanded to include Firefox on mobile platforms (primarily <a href="/wiki/Android_(operating_system)" title="Android (operating system)">Android</a>),<sup id="cite_ref-13" class="reference"><a href="#cite_note-13">[13]</a></sup> a mobile OS called <a href="/wiki/Firefox_OS" title="Firefox OS">Firefox OS</a>,<sup id="cite_ref-14" class="reference"><a href="#cite_note-14">[14]</a></sup> a web-based identity system called <a href="/wiki/Mozilla_Persona" title="Mozilla Persona">Mozilla Persona</a> and a marketplace for HTML5 applications.<sup id="cite_ref-15" class="reference"><a href="#cite_note-15">[15]</a></sup></p>
                <p>In a report released in November 2012, Mozilla reported that their total revenue for 2011 was $163&#160;million, which was up 33% from $123&#160;million in 2010. Mozilla noted that roughly 85% of their revenue comes from their contract with Google.<sup id="cite_ref-16" class="reference"><a href="#cite_note-16">[16]</a></sup></p>
                <p>At the end of 2013, Mozilla announced a deal with <a href="/wiki/Cisco_Systems" title="Cisco Systems">Cisco Systems</a> whereby Firefox would download and use a Cisco-provided binary build of an open source<sup id="cite_ref-github_17-0" class="reference"><a href="#cite_note-github-17">[17]</a></sup> <a href="/wiki/Codec" title="Codec">codec</a> to play the <a href="/wiki/Proprietary_format" title="Proprietary format">proprietary</a> <a href="/wiki/H.264" class="mw-redirect" title="H.264">H.264</a> video format.<sup id="cite_ref-gigaom_18-0" class="reference"><a href="#cite_note-gigaom-18">[18]</a></sup><sup id="cite_ref-techrepublic_19-0" class="reference"><a href="#cite_note-techrepublic-19">[19]</a></sup> As part of the deal, Cisco would pay any patent licensing fees associated with the binaries that it distributes. Mozilla's CTO, <a href="/wiki/Brendan_Eich" title="Brendan Eich">Brendan Eich</a>, acknowledged that this is "not a complete solution" and isn't "perfect".<sup id="cite_ref-20" class="reference"><a href="#cite_note-20">[20]</a></sup> An employee in Mozilla's video formats team, writing in an unofficial capacity, justified<sup id="cite_ref-21" class="reference"><a href="#cite_note-21">[21]</a></sup> it by the need to maintain their large user base, which would be necessary in future battles for truly free video formats.</p>
                <p>In December 2013, Mozilla announced funding for the development of non-<a href="/wiki/Free_software" title="Free software">free</a> games<sup id="cite_ref-22" class="reference"><a href="#cite_note-22">[22]</a></sup> through its Game Creator Challenge. However, even those games that may be released under a non-free software or open source license must be made with open web technologies and Javascript as per the work criteria outlined in the announcement.</p>
                <h3><span class="mw-headline" id="Eich_CEO_promotion_controversy">Eich CEO promotion controversy</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=2" title="Edit section: Eich CEO promotion controversy">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <p>On March 24, 2014, Mozilla promoted <a href="/wiki/Brendan_Eich" title="Brendan Eich">Brendan Eich</a> to the role of CEO. This led to boycotts and protests from the LGBT community and its supporters, as Eich previously donated US$1,000<sup id="cite_ref-23" class="reference"><a href="#cite_note-23">[23]</a></sup> in 2008 in support of <a href="/wiki/California_Proposition_8_(2008)" title="California Proposition 8 (2008)">California's Proposition 8</a>, a California ballot proposition and state constitutional amendment in opposition to same-sex marriage.<sup id="cite_ref-arstechnica_24-0" class="reference"><a href="#cite_note-arstechnica-24">[24]</a></sup> Eich's donation first became public knowledge in 2012, while he was Mozilla’s chief technical officer, leading to angry responses on Twitter—including the use of the hashtag "#wontworkwithbigots".<sup id="cite_ref-25" class="reference"><a href="#cite_note-25">[25]</a></sup></p>
                <p>Protests also emerged in 2014 following the announcement of Eich's appointment as CEO of Mozilla. U.S. companies <a href="/wiki/OkCupid" title="OkCupid">OkCupid</a> and <a href="/wiki/CREDO_Mobile" title="CREDO Mobile">CREDO Mobile</a> received media coverage for their objections, with the former asking its users to boycott the browser,<sup id="cite_ref-26" class="reference"><a href="#cite_note-26">[26]</a></sup> while Credo amassed 50,000 signatures for a petition that called for Eich's resignation</p>
                <p>Due to the controversy, Eich voluntarily stepped down on April 3, 2014<sup id="cite_ref-27" class="reference"><a href="#cite_note-27">[27]</a></sup> and <a href="/wiki/Mitchell_Baker" title="Mitchell Baker">Mitchell Baker</a>, executive chairwoman of Mozilla Corporation, posted a statement on the Mozilla blog: "We didn’t move fast enough to engage with people once the controversy started. Mozilla believes both in equality and freedom of speech. Equality is necessary for meaningful speech. And you need free speech to fight for equality."<sup id="cite_ref-28" class="reference"><a href="#cite_note-28">[28]</a></sup> Eich's resignation promoted a larger backlash from conservatives who felt he had been forced out of the company internally.<sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (August 2015)">citation needed</span></a></i>]</sup></p>
                <p>OkCupid co-founder and CEO <a href="/wiki/Sam_Yagan" title="Sam Yagan">Sam Yagan</a> had also donated $500<sup id="cite_ref-29" class="reference"><a href="#cite_note-29">[29]</a></sup> to Republican candidate <a href="/wiki/Chris_Cannon" title="Chris Cannon">Chris Cannon</a> who proceeded to vote for multiple measures viewed as "anti-gay", including the banning of same-sex marriage.<sup id="cite_ref-30" class="reference"><a href="#cite_note-30">[30]</a></sup><sup id="cite_ref-31" class="reference"><a href="#cite_note-31">[31]</a></sup><sup id="cite_ref-32" class="reference"><a href="#cite_note-32">[32]</a></sup><sup id="cite_ref-33" class="reference"><a href="#cite_note-33">[33]</a></sup> Yagan claims he did not know about Cannon's stance on gay rights and that his contribution was due to the candidate being the ranking Republican participating in the House subcommittee that oversaw Internet and Intellectual Property matters.<sup id="cite_ref-34" class="reference"><a href="#cite_note-34">[34]</a></sup><sup id="cite_ref-35" class="reference"><a href="#cite_note-35">[35]</a></sup><sup id="cite_ref-uncrunched.com_36-0" class="reference"><a href="#cite_note-uncrunched.com-36">[36]</a></sup><sup id="cite_ref-37" class="reference"><a href="#cite_note-37">[37]</a></sup><sup id="cite_ref-38" class="reference"><a href="#cite_note-38">[38]</a></sup></p>
                <p>Reader comments on articles that were published close to the events were divided between support for OkCupid's actions and opposition to them. Supporters claimed the boycott was justified and saw OkCupid's actions as a firm statement of opposition to intolerance towards the gay community. Opponents saw OkCupid's actions as hypocritical, since Eich is also the inventor of <a href="/wiki/Brendan_Eich#Netscape_and_JavaScript" title="Brendan Eich">JavaScript</a>, which is still required to browse OkCupid's website, and felt that users should not be punished for the actions of Mozilla and suspected that OkCupid's actions were a <a href="/wiki/Publicity_stunt" title="Publicity stunt">publicity stunt</a>.<sup id="cite_ref-uncrunched.com_36-1" class="reference"><a href="#cite_note-uncrunched.com-36">[36]</a></sup><sup id="cite_ref-39" class="reference"><a href="#cite_note-39">[39]</a></sup></p>
                <h2><span class="mw-headline" id="Values">Values</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=3" title="Edit section: Values">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h2>
                <p>According to Mozilla's manifesto,<sup id="cite_ref-manifesto_40-0" class="reference"><a href="#cite_note-manifesto-40">[40]</a></sup> which outlines goals, principles, and a pledge, "The Mozilla project uses a community-based approach to create world-class open source software and to develop new types of collaborative activities". Mozilla's manifesto mentions only its beliefs in regards to the Internet and Internet privacy, and has no mention of any political or social viewpoints.</p>
                <h3><span class="mw-headline" id="Pledge">Pledge</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=4" title="Edit section: Pledge">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <p>According to the Mozilla Foundation:<sup id="cite_ref-41" class="reference"><a href="#cite_note-41">[41]</a></sup></p>
                <blockquote class="templatequote">
                    <p>The Mozilla Foundation pledges to support the Mozilla Manifesto in its activities. Specifically, we will:</p>
                    <ul>
                        <li>Build and enable open-source technologies and communities that support the Manifesto’s principles;</li>
                        <li>Build and deliver great consumer products that support the Manifesto’s principles;</li>
                        <li>Use the Mozilla assets (intellectual property such as copyrights and trademarks, infrastructure, funds, and reputation) to keep the Internet an open platform;</li>
                        <li>Promote models for creating economic value for the public benefit; and</li>
                        <li>Promote the Mozilla Manifesto principles in public discourse and within the Internet industry.</li>
                    </ul>
                </blockquote>
                <h2><span class="mw-headline" id="Software">Software</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=5" title="Edit section: Software">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h2>
                <div class="thumb tright">
                    <div class="thumbinner" style="width:222px;">
                        <a href="/wiki/File:Mozilla_Firefox_logo_2013.svg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/76/Mozilla_Firefox_logo_2013.svg/220px-Mozilla_Firefox_logo_2013.svg.png" width="220" height="233" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/76/Mozilla_Firefox_logo_2013.svg/330px-Mozilla_Firefox_logo_2013.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/76/Mozilla_Firefox_logo_2013.svg/440px-Mozilla_Firefox_logo_2013.svg.png 2x" data-file-width="352" data-file-height="373" /></a>
                        <div class="thumbcaption">
                            <div class="magnify">
                                <a href="/wiki/File:Mozilla_Firefox_logo_2013.svg" class="internal" title="Enlarge"></a>
                            </div>
                            Firefox logo</div>
                    </div>
                </div>
                <h3><span class="mw-headline" id="Firefox">Firefox</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=6" title="Edit section: Firefox">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Firefox" title="Firefox">Firefox</a></div>
                <p><a href="/wiki/Firefox" title="Firefox">Firefox</a> is a <a href="/wiki/Web_browser" title="Web browser">web browser</a>, and is Mozilla's <a href="/wiki/Flagship_product" class="mw-redirect" title="Flagship product">flagship</a> software product. It is available in both desktop and mobile versions. Firefox uses the <a href="/wiki/Gecko_(software)" title="Gecko (software)">Gecko</a> <a href="/wiki/Layout_engine" title="Layout engine">layout engine</a> to render web pages, which implements current and anticipated <a href="/wiki/Web_standards" title="Web standards">web standards</a>.<sup id="cite_ref-42" class="reference"><a href="#cite_note-42">[42]</a></sup> As of late 2015<sup class="plainlinks noprint asof-tag update" style="display:none;"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Mozilla&amp;action=edit">[update]</a></sup>, Firefox has approximately 10-11% of worldwide <a href="/wiki/Usage_share_of_web_browsers#Summary" title="Usage share of web browsers">usage share of web browsers</a>, making it the 4th most-used web browser.<sup id="cite_ref-w3counter1_43-0" class="reference"><a href="#cite_note-w3counter1-43">[43]</a></sup><sup id="cite_ref-gs.statcounter.com_44-0" class="reference"><a href="#cite_note-gs.statcounter.com-44">[44]</a></sup><sup id="cite_ref-getclicky1_45-0" class="reference"><a href="#cite_note-getclicky1-45">[45]</a></sup></p>
                <p>Firefox began as an experimental branch of the <a href="/wiki/Mozilla#Mozilla_Project" title="Mozilla">Mozilla codebase</a> by <a href="/wiki/Dave_Hyatt" title="Dave Hyatt">Dave Hyatt</a>, <a href="/wiki/Joe_Hewitt_(programmer)" title="Joe Hewitt (programmer)">Joe Hewitt</a> and <a href="/wiki/Blake_Ross" title="Blake Ross">Blake Ross</a>. They believed the commercial requirements of <a href="/wiki/Netscape" title="Netscape">Netscape's</a> sponsorship and developer-driven <a href="/wiki/Feature_creep" title="Feature creep">feature creep</a> compromised the utility of the Mozilla browser.<sup id="cite_ref-46" class="reference"><a href="#cite_note-46">[46]</a></sup> To combat what they saw as the <a href="/wiki/Mozilla_Application_Suite" title="Mozilla Application Suite">Mozilla Suite's</a> <a href="/wiki/Software_bloat" title="Software bloat">software bloat</a>, they created a stand-alone browser, with which they intended to replace the Mozilla Suite.</p>
                <p>Firefox was originally named <i>Phoenix</i> but the name was changed so as to avoid trademark conflicts with <a href="/wiki/Phoenix_Technologies" title="Phoenix Technologies">Phoenix Technologies</a>. The initially-announced replacement, <i>Firebird</i>, provoked objections from the <a href="/wiki/Firebird_(database_server)" title="Firebird (database server)">Firebird</a> project community.<sup id="cite_ref-47" class="reference"><a href="#cite_note-47">[47]</a></sup><sup id="cite_ref-48" class="reference"><a href="#cite_note-48">[48]</a></sup> The current name, Firefox, was chosen on February 9, 2004.<sup id="cite_ref-49" class="reference"><a href="#cite_note-49">[49]</a></sup></p>
                <h3><span class="mw-headline" id="Firefox_Mobile">Firefox Mobile</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=7" title="Edit section: Firefox Mobile">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Firefox_Mobile" class="mw-redirect" title="Firefox Mobile">Firefox Mobile</a></div>
                <p>Firefox Mobile (codenamed <i>Fennec</i>) is the build of the <a href="/wiki/Firefox" title="Firefox">Mozilla Firefox</a> <a href="/wiki/Web_browser" title="Web browser">web browser</a> for devices such as <a href="/wiki/Smartphone" title="Smartphone">smartphones</a> and <a href="/wiki/Tablet_computer" title="Tablet computer">tablet computers</a>.</p>
                <p>Firefox Mobile uses the same <a href="/wiki/Gecko_(layout_engine)" class="mw-redirect" title="Gecko (layout engine)">Gecko</a> <a href="/wiki/Layout_engine" title="Layout engine">layout engine</a> as <a href="/wiki/Firefox" title="Firefox">Mozilla Firefox</a>. For example, version 1.0 used the same engine as Firefox 3.6, and the following release, 4.0, shared core code with Firefox 4.0. Its features include <a href="/wiki/HTML5" title="HTML5">HTML5</a> support, <a href="/wiki/Firefox_Sync" title="Firefox Sync">Firefox Sync</a>, <a href="/wiki/Add-on_(Mozilla)" title="Add-on (Mozilla)">add-ons</a> support and <a href="/wiki/Tabbed_browsing" class="mw-redirect" title="Tabbed browsing">tabbed browsing</a>.<sup id="cite_ref-50" class="reference"><a href="#cite_note-50">[50]</a></sup></p>
                <p>Firefox Mobile is currently available for <a href="/wiki/Android_(operating_system)" title="Android (operating system)">Android</a> 2.2 and above devices with an <a href="/wiki/ARM_architecture" title="ARM architecture">ARMv7</a> or <a href="/wiki/ARM_architecture" title="ARM architecture">ARMv6</a> CPU.<sup id="cite_ref-51" class="reference"><a href="#cite_note-51">[51]</a></sup> The x86 architecture is not officially supported.<sup id="cite_ref-52" class="reference"><a href="#cite_note-52">[52]</a></sup> <a href="/wiki/Tristan_Nitot" title="Tristan Nitot">Tristan Nitot</a>, president of <a href="/wiki/Mozilla_Europe" title="Mozilla Europe">Mozilla Europe</a>, has said that it's unlikely that an <a href="/wiki/IPhone" title="IPhone">iPhone</a> or a <a href="/wiki/BlackBerry" title="BlackBerry">BlackBerry</a> version will be released, citing <a href="/wiki/Apple_Inc" class="mw-redirect" title="Apple Inc">Apple's</a> iTunes Store application approval policies (which forbid applications competing with Apple's own, and forbid engines which run downloaded code) and BlackBerry's limited operating system as the reasons.<sup id="cite_ref-53" class="reference"><a href="#cite_note-53">[53]</a></sup></p>
                <h3><span class="mw-headline" id="Firefox_OS">Firefox OS</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=8" title="Edit section: Firefox OS">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Firefox_OS" title="Firefox OS">Firefox OS</a></div>
                <p>Firefox OS (project name: <i>Boot to Gecko</i> also known as <i>B2G</i>) is an <a href="/wiki/Open_source" class="mw-redirect" title="Open source">open source</a> <a href="/wiki/Operating_system" title="Operating system">operating system</a> in development by Mozilla that aims to support <a href="/wiki/HTML5" title="HTML5">HTML5</a> apps written using "<a href="/wiki/Open_Web" title="Open Web">open Web</a>" technologies rather than platform-specific native <a href="/wiki/Application_programming_interface" title="Application programming interface">APIs</a>. The concept behind Firefox OS is that all user-accessible software will be HTML5 applications, that use Open Web APIs to access the phone's hardware directly via <a href="/wiki/JavaScript" title="JavaScript">JavaScript</a>.<sup id="cite_ref-54" class="reference"><a href="#cite_note-54">[54]</a></sup></p>
                <p>Some devices using this OS include<sup id="cite_ref-55" class="reference"><a href="#cite_note-55">[55]</a></sup> Alcatel One Touch Fire, ZTE Open, LG Fireweb.</p>
                <h3><span class="mw-headline" id="Thunderbird">Thunderbird</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=9" title="Edit section: Thunderbird">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Mozilla_Thunderbird" title="Mozilla Thunderbird">Mozilla Thunderbird</a></div>
                <p><a href="/wiki/Mozilla_Thunderbird" title="Mozilla Thunderbird">Thunderbird</a> is a free, open source, cross-platform email and news client developed by the volunteers of the Mozilla Community.</p>
                <p>On July 16, 2012, Mitchell Baker announced that Mozilla's leadership had come to the conclusion that on-going stability was the most important thing for Thunderbird and that innovation in Thunderbird was no longer a priority for Mozilla. In that update Baker also suggested that Mozilla had provided a pathway for community to innovate around Thunderbird if the community chooses.<sup id="cite_ref-56" class="reference"><a href="#cite_note-56">[56]</a></sup></p>
                <h3><span class="mw-headline" id="SeaMonkey">SeaMonkey</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=10" title="Edit section: SeaMonkey">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div role="note" class="hatnote">Main article: <a href="/wiki/SeaMonkey" title="SeaMonkey">SeaMonkey</a></div>
                <div class="thumb tleft">
                    <div class="thumbinner" style="width:130px;">
                        <a href="/wiki/File:SeaMonkey.png" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/0/0d/SeaMonkey.png" width="128" height="128" class="thumbimage" data-file-width="128" data-file-height="128" /></a>
                        <div class="thumbcaption">
                            <div class="magnify">
                                <a href="/wiki/File:SeaMonkey.png" class="internal" title="Enlarge"></a>
                            </div>
                            SeaMonkey logo</div>
                    </div>
                </div>
                <p><a href="/wiki/SeaMonkey" title="SeaMonkey">SeaMonkey</a> (formerly the Mozilla Application Suite) is a free and open source cross platform suite of Internet software components including a web browser component, a client for sending and receiving email and <a href="/wiki/USENET" class="mw-redirect" title="USENET">USENET</a> newsgroup messages, an HTML editor (<a href="/wiki/Mozilla_Composer" title="Mozilla Composer">Mozilla Composer</a>) and the <a href="/wiki/ChatZilla" title="ChatZilla">ChatZilla</a> IRC client.</p>
                <p>On March 10, 2005, <a href="/wiki/The_Mozilla_Foundation" class="mw-redirect" title="The Mozilla Foundation">the Mozilla Foundation</a> announced that it would not release any official versions of Mozilla Application Suite beyond 1.7.x, since it had now focused on the standalone applications <a href="/wiki/Mozilla_Firefox" class="mw-redirect" title="Mozilla Firefox">Firefox</a> and <a href="/wiki/Mozilla_Thunderbird" title="Mozilla Thunderbird">Thunderbird</a>.<sup id="cite_ref-57" class="reference"><a href="#cite_note-57">[57]</a></sup> SeaMonkey is now maintained by the SeaMonkey Council, which has <a href="/wiki/Trademark" title="Trademark">trademarked</a> the SeaMonkey name with help from the Mozilla Foundation.<sup id="cite_ref-58" class="reference"><a href="#cite_note-58">[58]</a></sup> The Mozilla Foundation provides project hosting for the SeaMonkey developers.</p>
                <div style="clear:both;"></div>
                <h3><span class="mw-headline" id="Bugzilla">Bugzilla</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=11" title="Edit section: Bugzilla">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Bugzilla" title="Bugzilla">Bugzilla</a></div>
                <div class="thumb tright">
                    <div class="thumbinner" style="width:222px;">
                        <a href="/wiki/File:Buggie.svg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Buggie.svg/220px-Buggie.svg.png" width="220" height="289" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Buggie.svg/330px-Buggie.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Buggie.svg/440px-Buggie.svg.png 2x" data-file-width="95" data-file-height="125" /></a>
                        <div class="thumbcaption">
                            <div class="magnify">
                                <a href="/wiki/File:Buggie.svg" class="internal" title="Enlarge"></a>
                            </div>
                            Bugzilla logo</div>
                    </div>
                </div>
                <p><a href="/wiki/Bugzilla" title="Bugzilla">Bugzilla</a> is a <a href="/wiki/World_Wide_Web" title="World Wide Web">web</a>-based general-purpose <a href="/wiki/Bug_tracking_system" title="Bug tracking system">bug tracking system</a>, which was released as <a href="/wiki/Open_source_software" class="mw-redirect" title="Open source software">open source software</a> by <a href="/wiki/Netscape_Communications" class="mw-redirect" title="Netscape Communications">Netscape Communications</a> in 1998 along with the rest of the Mozilla codebase, and is currently stewarded by Mozilla. It has been adopted by a variety of organizations for use as a <a href="/wiki/Bug_tracking_system" title="Bug tracking system">bug tracking system</a> for both <a href="/wiki/Free_and_open_source_software" class="mw-redirect" title="Free and open source software">free and open source software</a> and <a href="/wiki/Proprietary_software" title="Proprietary software">proprietary</a> projects and products, including the <a href="/wiki/The_Mozilla_Foundation" class="mw-redirect" title="The Mozilla Foundation">Mozilla Foundation</a>, the <a href="/wiki/Linux_kernel" title="Linux kernel">Linux kernel</a>, <a href="/wiki/GNOME" title="GNOME">GNOME</a>, <a href="/wiki/KDE" title="KDE">KDE</a>, <a href="/wiki/Red_Hat" title="Red Hat">Red Hat</a>, <a href="/wiki/Novell" title="Novell">Novell</a>, <a href="/wiki/Eclipse_(software)" title="Eclipse (software)">Eclipse</a> and <a href="/wiki/LibreOffice" title="LibreOffice">LibreOffice</a>.<sup id="cite_ref-59" class="reference"><a href="#cite_note-59">[59]</a></sup></p>
                <h3><span class="mw-headline" id="Components">Components</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=12" title="Edit section: Components">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <h4><span class="mw-headline" id="NSS">NSS</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=13" title="Edit section: NSS">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Network_Security_Services" title="Network Security Services">Network Security Services</a></div>
                <p><a href="/wiki/Network_Security_Services" title="Network Security Services">Network Security Services</a> (NSS) comprises a set of <a href="/wiki/Library_(computing)" title="Library (computing)">libraries</a> designed to support <a href="/wiki/Cross-platform" title="Cross-platform">cross-platform</a> development of security-enabled client and server applications. NSS provides a complete open-source implementation of crypto libraries supporting <a href="/wiki/Secure_Sockets_Layer" class="mw-redirect" title="Secure Sockets Layer">SSL</a> and <a href="/wiki/S/MIME" title="S/MIME">S/MIME</a>. NSS was previously <a href="/wiki/Multi-licensing" title="Multi-licensing">tri-licensed</a> under the <a href="/wiki/Mozilla_Public_License" title="Mozilla Public License">Mozilla Public License</a> 1.1, the <a href="/wiki/GNU_General_Public_License" title="GNU General Public License">GNU General Public License</a>, and the <a href="/wiki/LGPL" class="mw-redirect" title="LGPL">GNU Lesser General Public License</a>, but upgraded to GPL-compatible MPL 2.0.</p>
                <p><a href="/wiki/AOL" title="AOL">AOL</a>, <a href="/wiki/Red_Hat" title="Red Hat">Red Hat</a>, <a href="/wiki/Sun_Microsystems" title="Sun Microsystems">Sun Microsystems</a>/<a href="/wiki/Oracle_Corporation" title="Oracle Corporation">Oracle Corporation</a>, <a href="/wiki/Google" title="Google">Google</a> and other companies and individual contributors have co-developed NSS and it is used in a wide range of non-Mozilla products including <a href="/wiki/Evolution_(software)" title="Evolution (software)">Evolution</a>, <a href="/wiki/Pidgin_(software)" title="Pidgin (software)">Pidgin</a>, and <a href="/wiki/Apache_OpenOffice" title="Apache OpenOffice">Apache OpenOffice</a>.</p>
                <h4><span class="mw-headline" id="SpiderMonkey">SpiderMonkey</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=14" title="Edit section: SpiderMonkey">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <div role="note" class="hatnote">Main article: <a href="/wiki/SpiderMonkey_(JavaScript_engine)" class="mw-redirect" title="SpiderMonkey (JavaScript engine)">SpiderMonkey (JavaScript engine)</a></div>
                <p><a href="/wiki/SpiderMonkey_(software)" class="mw-redirect" title="SpiderMonkey (software)">SpiderMonkey</a> is the original <a href="/wiki/JavaScript_engine" title="JavaScript engine">JavaScript engine</a> developed by <a href="/wiki/Brendan_Eich" title="Brendan Eich">Brendan Eich</a> when he invented <a href="/wiki/JavaScript" title="JavaScript">JavaScript</a> in 1995 as a developer at <a href="/wiki/Netscape" title="Netscape">Netscape</a>. It became part of the Mozilla product family when Mozilla inherited Netscape's code-base in 1998. In 2011, Eich transferred the nominal ownership of the SpiderMonkey code and project to Dave Mandelin.<sup id="cite_ref-BE201106_60-0" class="reference"><a href="#cite_note-BE201106-60">[60]</a></sup></p>
                <p>SpiderMonkey is a <a href="/wiki/Cross-platform" title="Cross-platform">cross-platform</a> engine written in <a href="/wiki/C%2B%2B" title="C++">C++</a> which implements <a href="/wiki/ECMAScript" title="ECMAScript">ECMAScript</a>, a standard developed from JavaScript.<sup id="cite_ref-BE201106_60-1" class="reference"><a href="#cite_note-BE201106-60">[60]</a></sup><sup id="cite_ref-61" class="reference"><a href="#cite_note-61">[61]</a></sup> It comprises an <a href="/wiki/Interpreter_(computing)" title="Interpreter (computing)">interpreter</a>, several <a href="/wiki/Just-in-time_compilation" title="Just-in-time compilation">just-in-time compilers</a>, a <a href="/wiki/Decompiler" title="Decompiler">decompiler</a> and a <a href="/wiki/Garbage_collection_(computer_science)" title="Garbage collection (computer science)">garbage collector</a>. Products which embed SpiderMonkey include <a href="/wiki/Firefox" title="Firefox">Firefox</a>, <a href="/wiki/Mozilla_Thunderbird" title="Mozilla Thunderbird">Thunderbird</a>, <a href="/wiki/SeaMonkey" title="SeaMonkey">SeaMonkey</a>, and many non-Mozilla applications.<sup id="cite_ref-62" class="reference"><a href="#cite_note-62">[62]</a></sup></p>
                <h4><span class="mw-headline" id="Rhino">Rhino</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=15" title="Edit section: Rhino">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Rhino_(JavaScript_engine)" title="Rhino (JavaScript engine)">Rhino (JavaScript engine)</a></div>
                <p>Rhino is an <a href="/wiki/Open_source" class="mw-redirect" title="Open source">open source</a> <a href="/wiki/JavaScript_engine" title="JavaScript engine">JavaScript engine</a> managed by the <a href="/wiki/Mozilla_Foundation" title="Mozilla Foundation">Mozilla Foundation</a>. It is developed entirely in <a href="/wiki/Java_(programming_language)" title="Java (programming language)">Java</a>. Rhino converts JavaScript scripts into Java <a href="/wiki/Class_(computer_programming)" title="Class (computer programming)">classes</a>. Rhino works in both <a href="/wiki/Compiler" title="Compiler">compiled</a> and <a href="/wiki/Interpreter_(computing)" title="Interpreter (computing)">interpreted</a> mode.<sup id="cite_ref-63" class="reference"><a href="#cite_note-63">[63]</a></sup></p>
                <h4><span class="mw-headline" id="Gecko">Gecko</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=16" title="Edit section: Gecko">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Gecko_(layout_engine)" class="mw-redirect" title="Gecko (layout engine)">Gecko (layout engine)</a></div>
                <p><a href="/wiki/Gecko_(layout_engine)" class="mw-redirect" title="Gecko (layout engine)">Gecko</a> is a <a href="/wiki/Web_browser_engine" title="Web browser engine">layout engine</a> that supports web pages written using <a href="/wiki/HTML" title="HTML">HTML</a>, <a href="/wiki/Scalable_Vector_Graphics" title="Scalable Vector Graphics">SVG</a>, and <a href="/wiki/MathML" title="MathML">MathML</a>. Gecko is written in <a href="/wiki/C%2B%2B" title="C++">C++</a> and uses <a href="/wiki/NSPR" class="mw-redirect" title="NSPR">NSPR</a> for <a href="/wiki/Platform_independence" class="mw-redirect" title="Platform independence">platform independence</a>. Its source code is licensed under the <a href="/wiki/Mozilla_Public_License" title="Mozilla Public License">Mozilla Public License</a>.</p>
                <p>Firefox uses Gecko both for rendering web pages and for rendering its <a href="/wiki/User_interface" title="User interface">user interface</a>. Gecko is also used by Thunderbird, SeaMonkey, and many non-Mozilla applications.</p>
                <h4><span class="mw-headline" id="Rust">Rust</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=17" title="Edit section: Rust">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Rust_(programming_language)" title="Rust (programming language)">Rust (programming language)</a></div>
                <p><a href="/wiki/Rust_(programming_language)" title="Rust (programming language)">Rust</a> is a compiled <a href="/wiki/Programming_language" title="Programming language">programming language</a> being developed by Mozilla Research. It is designed for safety, concurrency, and performance. Rust is intended for creating large and complex software which needs to be both safe against exploits and fast.</p>
                <p>Rust is being used in an experimental layout engine, <a href="/wiki/Servo_(layout_engine)" title="Servo (layout engine)">Servo</a>, which is developed by Mozilla and Samsung. Servo is not used in any consumer-oriented browsers yet. However, the Servo project developers plan for parts of the Servo source code to be merged into Gecko, and Firefox, incrementally.<sup id="cite_ref-64" class="reference"><a href="#cite_note-64">[64]</a></sup><sup id="cite_ref-65" class="reference"><a href="#cite_note-65">[65]</a></sup></p>
                <h4><span class="mw-headline" id="XULRunner">XULRunner</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=18" title="Edit section: XULRunner">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <div role="note" class="hatnote">Main article: <a href="/wiki/XULRunner" title="XULRunner">XULRunner</a></div>
                <p><a href="/wiki/XULRunner" title="XULRunner">XULRunner</a> is a software platform and technology experiment by Mozilla, that allows applications built with the same technologies used by Firefox extensions (XPCOM, Javascript, HTML, CSS, XUL) to be run natively as desktop applications, without requiring Firefox to be installed on the user's machine. XULRunner binaries are available for the Windows, GNU/Linux and OS X operating systems, allowing such applications to be effectively cross platform.</p>
                <h4><span class="mw-headline" id="pdf.js">pdf.js</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=19" title="Edit section: pdf.js">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Pdf.js" class="mw-redirect" title="Pdf.js">pdf.js</a></div>
                <p><a href="/wiki/Pdf.js" class="mw-redirect" title="Pdf.js">Pdf.js</a> is a library developed by Mozilla that allows in-browser rendering of pdf documents using the HTML5 Canvas and Javascript. It is included by default in recent versions of Firefox, allowing the browser to render pdf documents without requiring an external plugin; and it is available separately as an extension named "PDF Viewer" for Firefox for Android, SeaMonkey, and the Firefox versions which don't include it built-in. It can also be included as part of a website's scripts, to allow pdf rendering for any browser that implements the required HTML5 features and can run Javascript.</p>
                <h4><span class="mw-headline" id="Shumway">Shumway</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=20" title="Edit section: Shumway">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Shumway_(software)" title="Shumway (software)">Shumway (software)</a></div>
                <p><a href="/wiki/Shumway_(software)" title="Shumway (software)">Shumway</a> is an open source replacement for the Adobe Flash Player, developed by Mozilla since 2012, using open web technologies as a replacement for Flash technologies. It uses Javascript and HTML5 Canvas elements to render Flash and execute Actionscript. It is included by default in Firefox Nightly and can be installed as an extension for any recent version of Firefox. The current implementation is limited in its capabilities to render Flash content outside simple projects.</p>
                <h2><span class="mw-headline" id="Other_activities">Other activities</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=21" title="Edit section: Other activities">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h2>
                <h3><span class="mw-headline" id="Mozilla_VR">Mozilla VR</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=22" title="Edit section: Mozilla VR">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <p>Mozilla VR is a team focused on bringing <a href="/wiki/Virtual_reality" title="Virtual reality">Virtual reality</a> tools, specifications, and standards to the open Web.<sup id="cite_ref-66" class="reference"><a href="#cite_note-66">[66]</a></sup> Mozilla VR maintains <a href="/wiki/A-Frame_(VR)" title="A-Frame (VR)">A-Frame (VR)</a>, a web framework for building VR experiences, and works on advancing <a href="/wiki/WebVR" title="WebVR">WebVR</a> support within web browsers.</p>
                <h3><span class="mw-headline" id="Mozilla_Persona">Mozilla Persona</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=23" title="Edit section: Mozilla Persona">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Mozilla_Persona" title="Mozilla Persona">Mozilla Persona</a></div>
                <p><a href="/wiki/Mozilla_Persona" title="Mozilla Persona">Mozilla Persona</a> is a secure, cross-browser website <a href="/wiki/Authentication" title="Authentication">authentication</a> mechanism which allows a user to use a single username and password (or other authentication method) to log in to multiple sites.<sup id="cite_ref-67" class="reference"><a href="#cite_note-67">[67]</a></sup> Mozilla Persona will be shutting down on November 30, 2016.<sup id="cite_ref-68" class="reference"><a href="#cite_note-68">[68]</a></sup></p>
                <h3><span class="mw-headline" id="Mozilla_Location_Service">Mozilla Location Service</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=24" title="Edit section: Mozilla Location Service">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Mozilla_Location_Service" title="Mozilla Location Service">Mozilla Location Service</a></div>
                <p>This open source crowdsourced geolocation service was started by Mozilla in 2013 and offers a free <a href="/wiki/Application_programming_interface" title="Application programming interface">API</a>.</p>
                <h3><span class="mw-headline" id="Webmaker">Webmaker</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=25" title="Edit section: Webmaker">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <p>Mozilla Webmaker is Mozilla's educational initiative, Webmaker's goal is to "help millions of people move from using the web to making the web." As part of Mozilla’s non-profit mission, Webmaker aims "to help the world increase their understanding of the web, take greater control of their online lives, and create a more web literate planet."<sup id="cite_ref-69" class="reference"><a href="#cite_note-69">[69]</a></sup><sup id="cite_ref-lifehacker.com_70-0" class="reference"><a href="#cite_note-lifehacker.com-70">[70]</a></sup><sup id="cite_ref-lifehacker.com_70-1" class="reference"><a href="#cite_note-lifehacker.com-70">[70]</a></sup></p>
                <h3><span class="mw-headline" id="Mozilla_Developer_Network">Mozilla Developer Network</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=26" title="Edit section: Mozilla Developer Network">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div role="note" class="hatnote">Main article: <a href="/wiki/Mozilla_Developer_Network" title="Mozilla Developer Network">Mozilla Developer Network</a></div>
                <p>Mozilla maintains a comprehensive developer documentation website called the <a href="/wiki/Mozilla_Developer_Network" title="Mozilla Developer Network">Mozilla Developer Network</a> which contains information about web technologies including <a href="/wiki/HTML" title="HTML">HTML</a>, <a href="/wiki/CSS" class="mw-redirect" title="CSS">CSS</a>, <a href="/wiki/SVG" class="mw-redirect" title="SVG">SVG</a>, <a href="/wiki/JavaScript" title="JavaScript">JavaScript</a>, as well Mozilla-specific information. In addition, Mozilla publishes a large number of videos about web technologies and the development of Mozilla projects on the Air Mozilla website.<sup id="cite_ref-71" class="reference"><a href="#cite_note-71">[71]</a></sup><sup id="cite_ref-72" class="reference"><a href="#cite_note-72">[72]</a></sup></p>
                <h2><span class="mw-headline" id="Community">Community</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=27" title="Edit section: Community">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h2>
                <p>The Mozilla Community consists of over 40,000 active contributors from across the globe<sup class="noprint Inline-Template Template-Fact" style="white-space:nowrap;">[<i><a href="/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"><span title="This claim needs references to reliable sources. (July 2015)">citation needed</span></a></i>]</sup>. It includes both paid employees and volunteers who work towards the goals set forth<sup id="cite_ref-manifesto_40-1" class="reference"><a href="#cite_note-manifesto-40">[40]</a></sup> in the Mozilla Manifesto. Many of the sub-communities in Mozilla have formed around localization efforts for Mozilla Firefox, and the Mozilla web properties.</p>
                <h3><span class="mw-headline" id="Local_communities">Local communities</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=28" title="Edit section: Local communities">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div class="thumb tright">
                    <div class="thumbinner" style="width:222px;">
                        <a href="/wiki/File:London_Mozilla_Workspace.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/London_Mozilla_Workspace.jpg/220px-London_Mozilla_Workspace.jpg" width="220" height="146" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/London_Mozilla_Workspace.jpg/330px-London_Mozilla_Workspace.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2a/London_Mozilla_Workspace.jpg/440px-London_Mozilla_Workspace.jpg 2x" data-file-width="2500" data-file-height="1656" /></a>
                        <div class="thumbcaption">
                            <div class="magnify">
                                <a href="/wiki/File:London_Mozilla_Workspace.jpg" class="internal" title="Enlarge"></a>
                            </div>
                            Mozilla spaces, London</div>
                    </div>
                </div>
                <p>There are a number of sub-communities that exist based on their geographical locations, where contributors near each other work together on particular activities, such as localization, marketing, PR and user support.</p>
                <h3><span class="mw-headline" id="Mozilla_Reps">Mozilla Reps</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=29" title="Edit section: Mozilla Reps">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <div class="thumb tright">
                    <div class="thumbinner" style="width:222px;">
                        <a href="/wiki/File:Mozilla_Reps.png" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Mozilla_Reps.png/220px-Mozilla_Reps.png" width="220" height="101" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Mozilla_Reps.png/330px-Mozilla_Reps.png 1.5x, //upload.wikimedia.org/wikipedia/commons/0/0b/Mozilla_Reps.png 2x" data-file-width="400" data-file-height="183" /></a>
                        <div class="thumbcaption">
                            <div class="magnify">
                                <a href="/wiki/File:Mozilla_Reps.png" class="internal" title="Enlarge"></a>
                            </div>
                            Mozilla Reps logo</div>
                    </div>
                </div>
                <p>The Mozilla Reps program aims to empower and support volunteer Mozillians who want to become official representatives of Mozilla in their region/locale.</p>
                <p>The program provides a simple framework and a specific set of tools to help Mozillians to organize and/or attend events, recruit and mentor new contributors, document and share activities, and support their local communities better.</p>
                <p>When joining the program, a Mozilla Rep agrees to take on the following responsibilities:</p>
                <ul>
                    <li>Represent Mozilla in their country/region</li>
                    <li>Promote the Mozilla Project and its mission</li>
                    <li>Build on and support existing/future local community efforts and programs</li>
                    <li>Inspire, recruit and support new contributors</li>
                    <li>Support and mentor future Mozilla Reps</li>
                    <li>Document clearly all their activities</li>
                </ul>
                <h3><span class="mw-headline" id="Conferences_and_events">Conferences and events</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=30" title="Edit section: Conferences and events">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h3>
                <h4><span class="mw-headline" id="Mozilla_Festival">Mozilla Festival</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=31" title="Edit section: Mozilla Festival">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <div class="thumb tright">
                    <div class="thumbinner" style="width:222px;">
                        <a href="/wiki/File:Fireside_Chat,_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg/220px-Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg" width="220" height="147" class="thumbimage" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg/330px-Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg/440px-Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg 2x" data-file-width="1280" data-file-height="854" /></a>
                        <div class="thumbcaption">
                            <div class="magnify">
                                <a href="/wiki/File:Fireside_Chat,_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg" class="internal" title="Enlarge"></a>
                            </div>
                            Speakers from the <a href="/wiki/Knight_Foundation" class="mw-redirect" title="Knight Foundation">Knight Foundation</a> discuss the future of news at the 2011 Mozilla Festival in London.</div>
                    </div>
                </div>
                <p>The Mozilla Festival is an annual event where hundreds of passionate people explore the Web, learn together and make things that can change the world. With the emphasis on <i>making</i>—the mantra of the Festival is "less yack, more hack." Journalists, coders, filmmakers, designers, educators, gamers, makers, youth and anyone else, from all over the world, are encouraged to attend, with attendees from more than 40 countries, working together at the intersection between freedom, the Web, and that years theme.</p>
                <p>The event revolves around design challenges which address key issues based on the chosen theme for that years festival. In previous years the Mozilla Festival has focused on Learning, and Media, with the 2012 festival being based around making. The titles of the festival revolve around the main theme, freedom (as in freedom of speech not free beer), and the Web.</p>
                <h4><span class="mw-headline" id="MozCamps">MozCamps</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=32" title="Edit section: MozCamps">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <p>MozCamps are the critical part of the Grow Mozilla initiative which aims to grow the Mozilla Community. These camps aim to bring core contributors from around the world together. They are intensive multi-day summits that include keynote speeches by Mozilla leadership, workshops and breakout sessions (led by paid and unpaid staff), and fun social outings. All of these activities combine to reward contributors for their hard work, engage them with new products and initiatives, and align all attendees on Mozilla's mission.</p>
                <h4><span class="mw-headline" id="Mozilla_Summit">Mozilla Summit</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=33" title="Edit section: Mozilla Summit">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h4>
                <p>Mozilla Summit are the global event with active contributors and Mozilla employees to develop a shared understanding of Mozilla's mission together. Over 2,000 people representing 90 countries and 114 languages gathered in Santa Clara, Toronto and Brussels in 2013. Mozilla has since its last summit in 2013 replaced summits with all-hands where both employees and volunteers come together to collaborate the event is a scaled down version of Mozilla Summit.</p>
                <h2><span class="mw-headline" id="See_also">See also</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=34" title="Edit section: See also">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h2>
                <div role="navigation" aria-label="Portals" class="noprint portal plainlist tright" style="margin:0.5em 0 0.5em 1em;border:solid #aaa 1px">
                    <ul style="display:table;box-sizing:border-box;padding:0.1em;max-width:175px;background:#f9f9f9;font-size:85%;line-height:110%;font-style:italic;font-weight:bold">
                        <li style="display:table-row"><span style="display:table-cell;padding:0.2em;vertical-align:middle;text-align:center"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/31/Free_and_open-source_software_logo_%282009%29.svg/28px-Free_and_open-source_software_logo_%282009%29.svg.png" width="28" height="28" class="noviewer" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/31/Free_and_open-source_software_logo_%282009%29.svg/42px-Free_and_open-source_software_logo_%282009%29.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/31/Free_and_open-source_software_logo_%282009%29.svg/56px-Free_and_open-source_software_logo_%282009%29.svg.png 2x" data-file-width="512" data-file-height="512" /></span><span style="display:table-cell;padding:0.2em 0.2em 0.2em 0.3em;vertical-align:middle"><a href="/wiki/Portal:Free_software" class="mw-redirect" title="Portal:Free software">Free software portal</a></span></li>
                    </ul>
                </div>
                <ul>
                    <li><a href="/wiki/-zilla_(suffix)" class="mw-redirect" title="-zilla (suffix)">-zilla (suffix)</a></li>
                    <li><a href="/wiki/Mozilla_(mascot)" title="Mozilla (mascot)">Mozilla (mascot)</a></li>
                    <li><i><a href="/wiki/The_Book_of_Mozilla" title="The Book of Mozilla">The Book of Mozilla</a></i></li>
                    <li><a href="/wiki/Timeline_of_web_browsers" title="Timeline of web browsers">Timeline of web browsers</a></li>
                </ul>
                <h2><span class="mw-headline" id="References">References</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=35" title="Edit section: References">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h2>
                <div class="reflist references-column-width" style="-moz-column-width: 30em; -webkit-column-width: 30em; column-width: 30em; list-style-type: decimal;">
                    <ol class="references">
                        <li id="cite_note-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-1">^</a></b></span> <span class="reference-text">For exceptions, see "Values" section below</span></li>
                        <li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://www.mozilla.org/foundation/moco/">"About the Mozilla Corporation"</a>. Mozilla Foundation.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=About+the+Mozilla+Corporation&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fwww.mozilla.org%2Ffoundation%2Fmoco%2F&amp;rft.pub=Mozilla+Foundation&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-3">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.oreilly.com/openbook/opensources/book/netrev.html">"Freeing the Source: The Story of Mozilla"</a>. <i>Open Sources: Voices from the Open Source Revolution</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2016-05-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Freeing+the+Source%3A+The+Story+of+Mozilla&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.oreilly.com%2Fopenbook%2Fopensources%2Fbook%2Fnetrev.html&amp;rft.jtitle=Open+Sources%3A+Voices+from+the+Open+Source+Revolution&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://whois.domaintools.com/mozilla.org">"Mozilla.org WHOIS, DNS, &amp; Domain Info"</a>. <i>DomainTools</i><span class="reference-accessdate">. Retrieved <span class="nowrap">1 May</span> 2016</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Mozilla.org+WHOIS%2C+DNS%2C+%26+Domain+Info&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fwhois.domaintools.com%2Fmozilla.org&amp;rft.jtitle=DomainTools&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-google-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-google_5-0">^</a></b></span> <span class="reference-text"><cite class="citation book">Payment, S. (2007). <a rel="nofollow" class="external text" href="//books.google.co.uk/books?id=zyIvOn7sKCsC"><i>Marc Andreessen and Jim Clark: The Founders of Netscape</i></a>. Rosen Publishing Group. <a href="/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a>&#160;<a href="/wiki/Special:BookSources/9781404207196" title="Special:BookSources/9781404207196">9781404207196</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.au=Payment%2C+S.&amp;rft.btitle=Marc+Andreessen+and+Jim+Clark%3A+The+Founders+of+Netscape&amp;rft.date=2007&amp;rft.genre=book&amp;rft_id=%2F%2Fbooks.google.co.uk%2Fbooks%3Fid%3DzyIvOn7sKCsC&amp;rft.isbn=9781404207196&amp;rft.pub=Rosen+Publishing+Group&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-Mozilla_Launch_Announcement-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-Mozilla_Launch_Announcement_6-0">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20021004080737/wp.netscape.com/newsref/pr/newsrelease577.html">"Netscape Announces mozilla.org, a Dedicated Team and Web Site Supporting Development of Free Client Source Code"</a>. Netscape. Archived from the original on October 4, 2002<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-08-21</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Netscape+Announces+mozilla.org%2C+a+Dedicated+Team+and+Web+Site+Supporting+Development+of+Free+Client+Source+Code&amp;rft.genre=unknown&amp;rft_id=%2F%2Fwp.netscape.com%2Fnewsref%2Fpr%2Fnewsrelease577.html&amp;rft.pub=Netscape&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span> <span class="citation-comment" style="display:none; color:#33aa33">CS1 maint: Unfit url (<a href="/wiki/Category:CS1_maint:_Unfit_url" title="Category:CS1 maint: Unfit url">link</a>)</span></span>
                        </li>
                        <li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><cite class="citation news"><a rel="nofollow" class="external text" href="http://www.highbeam.com/doc/1G1-20453744.html">"Mac vendors ponder Netscape gambit."</a>. <i>Macworld</i>. 1 May 1998<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-08-19</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Mac+vendors+ponder+Netscape+gambit.&amp;rft.date=1998-05-01&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.highbeam.com%2Fdoc%2F1G1-20453744.html&amp;rft.jtitle=Macworld&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><cite class="citation web">Zawinski, Jamie (1996). <a rel="nofollow" class="external text" href="http://www.jwz.org/gruntle/nscpdorm.html">"nscp dorm"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2007-10-12</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.aufirst=Jamie&amp;rft.aulast=Zawinski&amp;rft.btitle=nscp+dorm&amp;rft.date=1996&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.jwz.org%2Fgruntle%2Fnscpdorm.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><cite class="citation web">Dave Titus with assistance from Andrew Wong. <a rel="nofollow" class="external text" href="http://www.davetitus.com/mozilla/">"How was Mozilla born"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.au=Dave+Titus+with+assistance+from+Andrew+Wong&amp;rft.btitle=How+was+Mozilla+born&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.davetitus.com%2Fmozilla%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www-archive.mozilla.org/hacking/coding-introduction.html">"Introduction to Mozilla Source Code"</a>. Mozilla<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-08-18</span></span>. <q>However, mozilla.org wants to emphasize that these milestones are being produced for testing purposes only.</q></cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Introduction+to+Mozilla+Source+Code&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww-archive.mozilla.org%2Fhacking%2Fcoding-introduction.html&amp;rft.pub=Mozilla&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.mozilla.org/en-US/press/mozilla-foundation.html">"mozilla.org Announces Launch of the Mozilla Foundation to Lead Open-Source Browser Efforts"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2012-08-18</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=mozilla.org+Announces+Launch+of+the+Mozilla+Foundation+to+Lead+Open-Source+Browser+Efforts&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.mozilla.org%2Fen-US%2Fpress%2Fmozilla-foundation.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-12">^</a></b></span> <span class="reference-text"><cite class="citation web"><a href="/wiki/Brendan_Eich" title="Brendan Eich">Eich, Brendan</a>; <a href="/wiki/Dave_Hyatt" title="Dave Hyatt">David Hyatt</a> (April 2, 2003). <a rel="nofollow" class="external text" href="http://www-archive.mozilla.org/roadmap/roadmap-02-Apr-2003.html">"mozilla development roadmap"</a>. Mozilla<span class="reference-accessdate">. Retrieved <span class="nowrap">2009-08-02</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.au=David+Hyatt&amp;rft.aufirst=Brendan&amp;rft.aulast=Eich&amp;rft.btitle=mozilla+development+roadmap&amp;rft.date=2003-04-02&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww-archive.mozilla.org%2Froadmap%2Froadmap-02-Apr-2003.html&amp;rft.pub=Mozilla&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-13"><span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://allthingsd.com/20120816/better-browsing-on-your-android-smartphone/">"Better Browsing on Your Android Smartphone"</a>. AllThingsD<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-08-18</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Better+Browsing+on+Your+Android+Smartphone&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fallthingsd.com%2F20120816%2Fbetter-browsing-on-your-android-smartphone%2F&amp;rft.pub=AllThingsD&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-14"><span class="mw-cite-backlink"><b><a href="#cite_ref-14">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.pcmag.com/article2/0,2817,2407468,00.asp">"Mozilla Releases Test Version of Firefox OS"</a>. PC Magazine<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-08-18</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Mozilla+Releases+Test+Version+of+Firefox+OS&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.pcmag.com%2Farticle2%2F0%2C2817%2C2407468%2C00.asp&amp;rft.pub=PC+Magazine&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-15">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.engadget.com/2012/06/12/mozilla-marketplace-live-web-apps-like-desktop/">"Mozilla Marketplace is live, lets you run web apps like desktop programs"</a>. Engadget<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-08-18</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Mozilla+Marketplace+is+live%2C+lets+you+run+web+apps+like+desktop+programs&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.engadget.com%2F2012%2F06%2F12%2Fmozilla-marketplace-live-web-apps-like-desktop%2F&amp;rft.pub=Engadget&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-16"><span class="mw-cite-backlink"><b><a href="#cite_ref-16">^</a></b></span> <span class="reference-text"><cite class="citation web">Lardinois, Frederic (November 15, 2012). <a rel="nofollow" class="external text" href="http://techcrunch.com/2012/11/15/mozilla-releases-annual-report-for-2011-revenue-up-33-to-163m-majority-from-google/">"Mozilla Releases Annual Report For 2011: Revenue Up 33% To $163M, Majority From Google"</a>. <i>techcrunch.com</i>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Mozilla+Releases+Annual+Report+For+2011%3A+Revenue+Up+33%25+To+%24163M%2C+Majority+From+Google&amp;rft.aufirst=Frederic&amp;rft.aulast=Lardinois&amp;rft.date=2012-11-15&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Ftechcrunch.com%2F2012%2F11%2F15%2Fmozilla-releases-annual-report-for-2011-revenue-up-33-to-163m-majority-from-google%2F&amp;rft.jtitle=techcrunch.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-github-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-github_17-0">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://github.com/cisco/openh264">"cisco/openh264 · GitHub"</a>. github.com<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-04-05</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=cisco%2Fopenh264+%B7+GitHub&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fgithub.com%2Fcisco%2Fopenh264&amp;rft.pub=github.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-gigaom-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-gigaom_18-0">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://gigaom.com/2013/10/30/mozilla-will-add-h-264-to-firefox-as-cisco-makes-eleventh-hour-push-for-webrtcs-future/">"Mozilla will add H.264 to Firefox as Cisco makes eleventh-hour push for WebRTC's future — Tech News and Analysis"</a>. gigaom.com<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-04-05</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Mozilla+will+add+H.264+to+Firefox+as+Cisco+makes+eleventh-hour+push+for+WebRTC%99s+future+%26mdash%3B+Tech+News+and+Analysis&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fgigaom.com%2F2013%2F10%2F30%2Fmozilla-will-add-h-264-to-firefox-as-cisco-makes-eleventh-hour-push-for-webrtcs-future%2F&amp;rft.pub=gigaom.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-techrepublic-19"><span class="mw-cite-backlink"><b><a href="#cite_ref-techrepublic_19-0">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.techrepublic.com/blog/australian-technology/cisco-to-release-open-source-h264-codec-mozilla-makes-tactical-retreat/">"Cisco to release open-source H.264 codec, Mozilla makes tactical retreat - TechRepublic"</a>. techrepublic.com<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-04-05</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Cisco+to+release+open-source+H.264+codec%2C+Mozilla+makes+tactical+retreat+-+TechRepublic&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.techrepublic.com%2Fblog%2Faustralian-technology%2Fcisco-to-release-open-source-h264-codec-mozilla-makes-tactical-retreat%2F&amp;rft.pub=techrepublic.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-20"><span class="mw-cite-backlink"><b><a href="#cite_ref-20">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://blog.mozilla.org/blog/2013/10/30/video-interoperability-on-the-web-gets-a-boost-from-ciscos-h-264-codec/">"Video Interoperability on the Web Gets a Boost From Cisco's H.264 Codec"</a>. <q>Of course, this is not a not a complete solution. In a perfect world, codecs, like other basic Internet technologies such as TCP/IP, HTTP, and HTML, would be fully open and free</q></cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Video+Interoperability+on+the+Web+Gets+a+Boost+From+Cisco%99s+H.264+Codec&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fblog.mozilla.org%2Fblog%2F2013%2F10%2F30%2Fvideo-interoperability-on-the-web-gets-a-boost-from-ciscos-h-264-codec%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-21"><span class="mw-cite-backlink"><b><a href="#cite_ref-21">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://xiphmont.livejournal.com/61927.html">"Comments on Cisco, Mozilla, and H.264"</a>. <q>By endorsing Cisco's plan, there's no getting around the fact that we've caved on our principles. That said, principles can't replace being in a practical position to make a difference in the future.</q></cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Comments+on+Cisco%2C+Mozilla%2C+and+H.264&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fxiphmont.livejournal.com%2F61927.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span> - Christopher Montgomery wrote in a personal capacity but works for Mozilla in their codecs team</span>
                        </li>
                        <li id="cite_note-22"><span class="mw-cite-backlink"><b><a href="#cite_ref-22">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://wiki.mozilla.org/Game_Creator_Challenge_-Contest_Terms_and_Conditions">"Game Creator Challenge -Contest Terms and Conditions"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Game+Creator+Challenge+-Contest+Terms+and+Conditions&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fwiki.mozilla.org%2FGame_Creator_Challenge_-Contest_Terms_and_Conditions&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span> - submissions to the "amateur" category have to be released as free software, but not for the other two categories</span>
                        </li>
                        <li id="cite_note-23"><span class="mw-cite-backlink"><b><a href="#cite_ref-23">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://projects.latimes.com/prop8/donation/8930/">"Los Angeles Times - Brendan Eich contribution to Proposition 8"</a>. latimes.com<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Los+Angeles+Times+-+Brendan+Eich+contribution+to+Proposition+8&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fprojects.latimes.com%2Fprop8%2Fdonation%2F8930%2F&amp;rft.pub=latimes.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-arstechnica-24"><span class="mw-cite-backlink"><b><a href="#cite_ref-arstechnica_24-0">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://arstechnica.com/business/2014/03/gay-firefox-developers-boycott-mozilla-to-protest-ceo-hire/">"Gay Firefox developers boycott Mozilla to protest CEO hire [Updated] | Ars Technica"</a>. arstechnica.com<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-04-05</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Gay+Firefox+developers+boycott+Mozilla+to+protest+CEO+hire+%26%2391%3BUpdated%26%2393%3B+%26%23124%3B+Ars+Technica&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Farstechnica.com%2Fbusiness%2F2014%2F03%2Fgay-firefox-developers-boycott-mozilla-to-protest-ceo-hire%2F&amp;rft.pub=arstechnica.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-25"><span class="mw-cite-backlink"><b><a href="#cite_ref-25">^</a></b></span> <span class="reference-text"><cite class="citation web">Kelly Faircloth (9 April 2012). <a rel="nofollow" class="external text" href="http://betabeat.com/2012/04/tech-celeb-makes-prop-8-donation-internet-goes-berserk/">"Tech Celeb Makes Prop-8 Donation; Internet Goes Berserk"</a>. <i>BetaBeat</i>. BetaBeat<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-04-28</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Tech+Celeb+Makes+Prop-8+Donation%3B+Internet+Goes+Berserk&amp;rft.au=Kelly+Faircloth&amp;rft.date=2012-04-09&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fbetabeat.com%2F2012%2F04%2Ftech-celeb-makes-prop-8-donation-internet-goes-berserk%2F&amp;rft.jtitle=BetaBeat&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-26"><span class="mw-cite-backlink"><b><a href="#cite_ref-26">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://i.huffpost.com/gen/1710681/thumbs/o-OKC-900.jpg">"Screenshot of OkCupid's statement towards Firefox users"</a>. huffingtonpost.com<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Screenshot+of+OkCupid%27s+statement+towards+Firefox+users&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fi.huffpost.com%2Fgen%2F1710681%2Fthumbs%2Fo-OKC-900.jpg&amp;rft.pub=huffingtonpost.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-27"><span class="mw-cite-backlink"><b><a href="#cite_ref-27">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://blog.mozilla.org/blog/2014/04/05/faq-on-ceo-resignation/">"FAQ on CEO Resignation"</a>. <i>The Mozilla Blog</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2015-04-20</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=FAQ+on+CEO+Resignation&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fblog.mozilla.org%2Fblog%2F2014%2F04%2F05%2Ffaq-on-ceo-resignation%2F&amp;rft.jtitle=The+Mozilla+Blog&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-28"><span class="mw-cite-backlink"><b><a href="#cite_ref-28">^</a></b></span> <span class="reference-text"><cite class="citation web">Baker, Mitchell (3 April 2014). <a rel="nofollow" class="external text" href="https://blog.mozilla.org/blog/2014/04/03/brendan-eich-steps-down-as-mozilla-ceo/">"Brendan Eich Steps Down as Mozilla CEO"</a>. <i>mozilla blog</i>. Mozilla<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-04-04</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Brendan+Eich+Steps+Down+as+Mozilla+CEO&amp;rft.aufirst=Mitchell&amp;rft.aulast=Baker&amp;rft.date=2014-04-03&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fblog.mozilla.org%2Fblog%2F2014%2F04%2F03%2Fbrendan-eich-steps-down-as-mozilla-ceo%2F&amp;rft.jtitle=mozilla+blog&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-29"><span class="mw-cite-backlink"><b><a href="#cite_ref-29">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.opensecrets.org/indivs/search.php?name=Sam+Yagan&amp;cycle=All&amp;sort=R&amp;state=&amp;zip=&amp;employ=&amp;cand=&amp;submit=Submit+Query">"opensecrets.org listing of Sam Yagan's contributions to political candidates"</a>. opensecrets.org<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=opensecrets.org+listing+of+Sam+Yagan%27s+contributions+to+political+candidates&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.opensecrets.org%2Findivs%2Fsearch.php%3Fname%3DSam%2BYagan%26cycle%3DAll%26sort%3DR%26state%3D%26zip%3D%26employ%3D%26cand%3D%26submit%3DSubmit%2BQuery&amp;rft.pub=opensecrets.org&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-30"><span class="mw-cite-backlink"><b><a href="#cite_ref-30">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.ontheissues.org/house/Chris_Cannon.htm#Civil_Rights">"ontheissues.org listing of votes cast by Chris Cannon"</a>. ontheissues.org<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=ontheissues.org+listing+of+votes+cast+by+Chris+Cannon&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.ontheissues.org%2Fhouse%2FChris_Cannon.htm%23Civil_Rights&amp;rft.pub=ontheissues.org&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-31"><span class="mw-cite-backlink"><b><a href="#cite_ref-31">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.ontheissues.org/HouseVote/Party_2005-627.htm">"ontheissues.org listing of votes cast on the permanency of the Patriot Act"</a>. ontheissues.org<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=ontheissues.org+listing+of+votes+cast+on+the+permanency+of+the+Patriot+Act&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.ontheissues.org%2FHouseVote%2FParty_2005-627.htm&amp;rft.pub=ontheissues.org&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-32"><span class="mw-cite-backlink"><b><a href="#cite_ref-32">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.ontheissues.org/house/Chris_Cannon_Homeland_Security.htm">"ontheissues.org: Chris Cannon on Homeland Security"</a>. ontheissues.org<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=ontheissues.org%3A+Chris+Cannon+on+Homeland+Security&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.ontheissues.org%2Fhouse%2FChris_Cannon_Homeland_Security.htm&amp;rft.pub=ontheissues.org&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-33"><span class="mw-cite-backlink"><b><a href="#cite_ref-33">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.ontheissues.org/house/Chris_Cannon_Abortion.htm">"ontheissues.org: Chris Cannon on Abortion"</a>. ontheissues.org<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=ontheissues.org%3A+Chris+Cannon+on+Abortion&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.ontheissues.org%2Fhouse%2FChris_Cannon_Abortion.htm&amp;rft.pub=ontheissues.org&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-34"><span class="mw-cite-backlink"><b><a href="#cite_ref-34">^</a></b></span> <span class="reference-text"><cite class="citation web">Levintova, Hannah (7 April 2014). <a rel="nofollow" class="external text" href="http://www.motherjones.com/mojo/2014/04/okcupid-ceo-donate-anti-gay-firefox">"OkCupid's CEO Donated to an Anti-Gay Campaign Once, Too"</a>. <i>Hanna Levintova article on motherjones.com</i>. motherjones.com<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=OkCupid%27s+CEO+Donated+to+an+Anti-Gay+Campaign+Once%2C+Too&amp;rft.aufirst=Hannah&amp;rft.aulast=Levintova&amp;rft.date=2014-04-07&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.motherjones.com%2Fmojo%2F2014%2F04%2Fokcupid-ceo-donate-anti-gay-firefox&amp;rft.jtitle=Hanna+Levintova+article+on+motherjones.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-35"><span class="mw-cite-backlink"><b><a href="#cite_ref-35">^</a></b></span> <span class="reference-text"><cite class="citation web">Lee, Stephanie M. (8 April 2014). <a rel="nofollow" class="external text" href="http://blog.sfgate.com/techchron/2014/04/08/okcupid-ceo-once-donated-to-anti-gay-politician/">"OKCupid CEO once donated to anti-gay politician"</a>. <i>Stephanie M. Lee's blog on sfgate.com</i>. sfgate.com<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=OKCupid+CEO+once+donated+to+anti-gay+politician&amp;rft.aufirst=Stephanie+M.&amp;rft.aulast=Lee&amp;rft.date=2014-04-08&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fblog.sfgate.com%2Ftechchron%2F2014%2F04%2F08%2Fokcupid-ceo-once-donated-to-anti-gay-politician%2F&amp;rft.jtitle=Stephanie+M.+Lee%27s+blog+on+sfgate.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-uncrunched.com-36"><span class="mw-cite-backlink">^ <a href="#cite_ref-uncrunched.com_36-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-uncrunched.com_36-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://uncrunched.com/2014/04/06/the-hypocrisy-of-sam-yagan-okcupid/">"The Hypocrisy Of Sam Yagan &amp; OkCupid"</a>. <i>uncrunched.com blog</i>. uncrunched.com. 6 April 2014<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=The+Hypocrisy+Of+Sam+Yagan+%26+OkCupid&amp;rft.date=2014-04-06&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Funcrunched.com%2F2014%2F04%2F06%2Fthe-hypocrisy-of-sam-yagan-okcupid%2F&amp;rft.jtitle=uncrunched.com+blog&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-37"><span class="mw-cite-backlink"><b><a href="#cite_ref-37">^</a></b></span> <span class="reference-text"><cite class="citation web">Bellware, Kim (31 March 2014). <a rel="nofollow" class="external text" href="http://www.huffingtonpost.com/2014/03/31/okcupid-mozilla_n_5065743.html">"OKCupid Publicly Rips Mozilla: 'We Wish Them Nothing But Failure<span style="padding-right:0.2em;">'</span>"</a>. <i>Kim Bellware article on huffingtonpost.com</i>. huffingtonpost.com<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=OKCupid+Publicly+Rips+Mozilla%3A+%27We+Wish+Them+Nothing+But+Failure%27&amp;rft.aufirst=Kim&amp;rft.aulast=Bellware&amp;rft.date=2014-03-31&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.huffingtonpost.com%2F2014%2F03%2F31%2Fokcupid-mozilla_n_5065743.html&amp;rft.jtitle=Kim+Bellware+article+on+huffingtonpost.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-38"><span class="mw-cite-backlink"><b><a href="#cite_ref-38">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.huffingtonpost.com/2014/03/27/mozilla-ceo-prop-8-_n_5042660.html">"Mozilla's Appointment Of Brendan Eich As CEO Sparks Controversy After Prop 8 Donation News Re-Emerges"</a>. <i>huffingtonpost.com article</i>. huffingtonpost.com. 27 March 2014<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Mozilla%27s+Appointment+Of+Brendan+Eich+As+CEO+Sparks+Controversy+After+Prop+8+Donation+News+Re-Emerges&amp;rft.date=2014-03-27&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.huffingtonpost.com%2F2014%2F03%2F27%2Fmozilla-ceo-prop-8-_n_5042660.html&amp;rft.jtitle=huffingtonpost.com+article&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-39"><span class="mw-cite-backlink"><b><a href="#cite_ref-39">^</a></b></span> <span class="reference-text"><cite class="citation web">Eidelson, Josh (4 April 2014). <a rel="nofollow" class="external text" href="http://www.salon.com/2014/04/04/okcupids_gay_rights_stunt_has_its_limits_taking_a_deeper_look_at_the_savvy_ploy/">"OkCupid's gay rights stunt has its limits: Taking a deeper look at the savvy ploy"</a>. <i>Josh Eidelson article on salon.com</i>. salon.com<span class="reference-accessdate">. Retrieved <span class="nowrap">2014-07-01</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=OkCupid%99s+gay+rights+stunt+has+its+limits%3A+Taking+a+deeper+look+at+the+savvy+ploy&amp;rft.aufirst=Josh&amp;rft.aulast=Eidelson&amp;rft.date=2014-04-04&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.salon.com%2F2014%2F04%2F04%2Fokcupids_gay_rights_stunt_has_its_limits_taking_a_deeper_look_at_the_savvy_ploy%2F&amp;rft.jtitle=Josh+Eidelson+article+on+salon.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-manifesto-40"><span class="mw-cite-backlink">^ <a href="#cite_ref-manifesto_40-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-manifesto_40-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.mozilla.org/about/manifesto/">"Mozilla Manifesto"</a>. Mozilla.org<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-03-21</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Mozilla+Manifesto&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.mozilla.org%2Fabout%2Fmanifesto%2F&amp;rft.pub=Mozilla.org&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-41"><span class="mw-cite-backlink"><b><a href="#cite_ref-41">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://www.mozilla.org/en-US/about/manifesto/details/">"The Mozilla Manifesto"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">24 July</span> 2015</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=The+Mozilla+Manifesto&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fwww.mozilla.org%2Fen-US%2Fabout%2Fmanifesto%2Fdetails%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-42"><span class="mw-cite-backlink"><b><a href="#cite_ref-42">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20101128150117/http://download-firefox.org/spread-firefox/gecko-layout-engine-and-mozilla-firefox/">"Gecko Layout Engine"</a>. download-firefox.org. July 17, 2008. Archived from <a rel="nofollow" class="external text" href="http://download-firefox.org/spread-firefox/gecko-layout-engine-and-mozilla-firefox/">the original</a> on 2010-11-28<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-05-10</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Gecko+Layout+Engine&amp;rft.date=2008-07-17&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fdownload-firefox.org%2Fspread-firefox%2Fgecko-layout-engine-and-mozilla-firefox%2F&amp;rft.pub=download-firefox.org&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-w3counter1-43"><span class="mw-cite-backlink"><b><a href="#cite_ref-w3counter1_43-0">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.w3counter.com/trends">"Web Browser Market Share Trends"</a>. <i>W3Counter</i>. Awio Web Services LLC<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-05-10</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Web+Browser+Market+Share+Trends&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.w3counter.com%2Ftrends&amp;rft.jtitle=W3Counter&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-gs.statcounter.com-44"><span class="mw-cite-backlink"><b><a href="#cite_ref-gs.statcounter.com_44-0">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://gs.statcounter.com">"Top 5 Browsers"</a>. <i>StatCounter Global Stats</i>. StatCounter<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-05-10</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Top+5+Browsers&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fgs.statcounter.com&amp;rft.jtitle=StatCounter+Global+Stats&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-getclicky1-45"><span class="mw-cite-backlink"><b><a href="#cite_ref-getclicky1_45-0">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.getclicky.com/marketshare/global/web-browsers/">"Web browsers (Global marketshare)"</a>. <i>Clicky</i>. Roxr Software Ltd<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-05-10</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Web+browsers+%28Global+marketshare%29&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.getclicky.com%2Fmarketshare%2Fglobal%2Fweb-browsers%2F&amp;rft.jtitle=Clicky&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-46"><span class="mw-cite-backlink"><b><a href="#cite_ref-46">^</a></b></span> <span class="reference-text"><cite class="citation web"><a href="/wiki/Ben_Goodger" title="Ben Goodger">Goodger, Ben</a> (February 6, 2006). <a rel="nofollow" class="external text" href="https://web.archive.org/web/20110623034401/http://weblogs.mozillazine.org/ben/archives/009698.html">"Where Did Firefox Come From?"</a>. Inside Firefox. Archived from <a rel="nofollow" class="external text" href="http://weblogs.mozillazine.org/ben/archives/009698.html">the original</a> on 2011-06-23<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-01-07</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.aufirst=Ben&amp;rft.aulast=Goodger&amp;rft.btitle=Where+Did+Firefox+Come+From%3F&amp;rft.date=2006-02-06&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fweblogs.mozillazine.org%2Fben%2Farchives%2F009698.html&amp;rft.pub=Inside+Firefox&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-47"><span class="mw-cite-backlink"><b><a href="#cite_ref-47">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20070914035447/http://www.ibphoenix.com/main.nfs?a=ibphoenix&amp;page=ibp_Mozilla0">"Mozilla browser becomes Firebird"</a>. IBPhoenix. Archived from <a rel="nofollow" class="external text" href="http://www.ibphoenix.com/main.nfs?a=ibphoenix&amp;page=ibp_Mozilla0">the original</a> on 2007-09-14<span class="reference-accessdate">. Retrieved <span class="nowrap">2013-06-10</span></span>. <q>We at IBPhoenix think that having a browser and a database with the same name in the same space will confuse the market, especially as browsers and databases are often used in the same applications</q></cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Mozilla+browser+becomes+Firebird&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.ibphoenix.com%2Fmain.nfs%3Fa%3Dibphoenix%26page%3Dibp_Mozilla0&amp;rft.pub=IBPhoenix&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-48"><span class="mw-cite-backlink"><b><a href="#cite_ref-48">^</a></b></span> <span class="reference-text"><cite class="citation web">Festa, Paul (May 6, 2003). <a rel="nofollow" class="external text" href="http://news.cnet.com/2100-1032_3-1000146.html">"Mozilla's Firebird gets wings clipped"</a>. <a href="/wiki/CNET_Networks" class="mw-redirect" title="CNET Networks">CNET</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2007-01-30</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.aufirst=Paul&amp;rft.aulast=Festa&amp;rft.btitle=Mozilla%27s+Firebird+gets+wings+clipped&amp;rft.date=2003-05-06&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2F2100-1032_3-1000146.html&amp;rft.pub=CNET&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-49"><span class="mw-cite-backlink"><b><a href="#cite_ref-49">^</a></b></span> <span class="reference-text"><cite class="citation web">Festa, Paul (February 9, 2004). <a rel="nofollow" class="external text" href="http://news.cnet.com/2100-7344-5156101.html">"Mozilla holds 'fire' in naming fight"</a>. CNET News<span class="reference-accessdate">. Retrieved <span class="nowrap">2007-01-24</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.aufirst=Paul&amp;rft.aulast=Festa&amp;rft.btitle=Mozilla+holds+%27fire%27+in+naming+fight&amp;rft.date=2004-02-09&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2F2100-7344-5156101.html&amp;rft.pub=CNET+News&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-50"><span class="mw-cite-backlink"><b><a href="#cite_ref-50">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.mozilla.org/en-US/firefox/mobile/features/">"Mobile features"</a>. Mozilla<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-06-26</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Mobile+features&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.mozilla.org%2Fen-US%2Ffirefox%2Fmobile%2Ffeatures%2F&amp;rft.pub=Mozilla&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-51"><span class="mw-cite-backlink"><b><a href="#cite_ref-51">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://wiki.mozilla.org/Mobile/Platforms/Android#System_Requirements">"Mobile System Requirements"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Mobile+System+Requirements&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fwiki.mozilla.org%2FMobile%2FPlatforms%2FAndroid%23System_Requirements&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-52"><span class="mw-cite-backlink"><b><a href="#cite_ref-52">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://support.mozilla.org/en-US/kb/will-firefox-work-my-mobile-device">"Firefox Mobile supported devices"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Firefox+Mobile+supported+devices&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fsupport.mozilla.org%2Fen-US%2Fkb%2Fwill-firefox-work-my-mobile-device&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-53"><span class="mw-cite-backlink"><b><a href="#cite_ref-53">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.mirror.co.uk/news/technology/2009/11/09/mozilla-rules-out-firefox-for-iphone-and-blackberry-115875-21809563/">"Mozilla rules out Firefox for iPhone and BlackBerry"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Mozilla+rules+out+Firefox+for+iPhone+and+BlackBerry&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.mirror.co.uk%2Fnews%2Ftechnology%2F2009%2F11%2F09%2Fmozilla-rules-out-firefox-for-iphone-and-blackberry-115875-21809563%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-54"><span class="mw-cite-backlink"><b><a href="#cite_ref-54">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.mozilla.org/firefox/os/">"Boot to Gecko Project"</a>. Mozilla. March 2012<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-03-30</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Boot+to+Gecko+Project&amp;rft.date=2012-03&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.mozilla.org%2Ffirefox%2Fos%2F&amp;rft.pub=Mozilla&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-55"><span class="mw-cite-backlink"><b><a href="#cite_ref-55">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://www.mozilla.org/en-US/firefox/os/devices/">"Firefox OS - Devices &amp; Availability"</a>. <i>Mozilla</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2015-12-30</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Firefox+OS+-+Devices+%26+Availability&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fwww.mozilla.org%2Fen-US%2Ffirefox%2Fos%2Fdevices%2F&amp;rft.jtitle=Mozilla&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-56"><span class="mw-cite-backlink"><b><a href="#cite_ref-56">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://blog.lizardwrangler.com/2012/07/06/thunderbird-stability-and-community-innovation/">"Thunderbird: Stability and Community Innovation | Mitchell's Blog"</a>. <i>blog.lizardwrangler.com</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2015-04-20</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Thunderbird%3A+Stability+and+Community+Innovation+%7C+Mitchell%27s+Blog&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fblog.lizardwrangler.com%2F2012%2F07%2F06%2Fthunderbird-stability-and-community-innovation%2F&amp;rft.jtitle=blog.lizardwrangler.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-57"><span class="mw-cite-backlink"><b><a href="#cite_ref-57">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://lwn.net/Articles/165080/">"Two discontinued browsers"</a>. LWN.net. 21 December 2005<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-08-19</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Two+discontinued+browsers&amp;rft.date=2005-12-21&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Flwn.net%2FArticles%2F165080%2F&amp;rft.pub=LWN.net&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-58"><span class="mw-cite-backlink"><b><a href="#cite_ref-58">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://home.kairo.at/blog/2007-06/seamonkey_r_trademarks_registered">"SeaMonkey trademarks registered!"</a>. kairo.at. 2007-05-22<span class="reference-accessdate">. Retrieved <span class="nowrap">2013-06-10</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=SeaMonkey+trademarks+registered%21&amp;rft.date=2007-05-22&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fhome.kairo.at%2Fblog%2F2007-06%2Fseamonkey_r_trademarks_registered&amp;rft.pub=kairo.at&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-59"><span class="mw-cite-backlink"><b><a href="#cite_ref-59">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.bugzilla.org/installation-list/">"Bugzilla Installation List"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2014-09-18</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Bugzilla+Installation+List&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.bugzilla.org%2Finstallation-list%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-BE201106-60"><span class="mw-cite-backlink">^ <a href="#cite_ref-BE201106_60-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-BE201106_60-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><cite class="citation web"><a href="/wiki/Brendan_Eich" title="Brendan Eich">Eich, Brendan</a> (21 June 2011). <a rel="nofollow" class="external text" href="http://brendaneich.com/2011/06/new-javascript-engine-module-owner/">"New JavaScript Engine Module Owner"</a>. BrendanEich.com.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.aufirst=Brendan&amp;rft.aulast=Eich&amp;rft.btitle=New+JavaScript+Engine+Module+Owner&amp;rft.date=2011-06-21&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fbrendaneich.com%2F2011%2F06%2Fnew-javascript-engine-module-owner%2F&amp;rft.pub=BrendanEich.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-61"><span class="mw-cite-backlink"><b><a href="#cite_ref-61">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://bugzilla.mozilla.org/show_bug.cgi?id=759422#c0">"Bug 759422 - Remove use of e4x in account creation"</a>. Bugzilla@Mozilla. 2012-08-17<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-08-18</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Bug+759422+-+Remove+use+of+e4x+in+account+creation&amp;rft.date=2012-08-17&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fbugzilla.mozilla.org%2Fshow_bug.cgi%3Fid%3D759422%23c0&amp;rft.pub=Bugzilla%40Mozilla&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-62"><span class="mw-cite-backlink"><b><a href="#cite_ref-62">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://developer.mozilla.org/en-US/docs/SpiderMonkey">"SpiderMonkey"</a>. Mozilla Developer Network. 2012-08-15<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-08-18</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=SpiderMonkey&amp;rft.date=2012-08-15&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2Fdocs%2FSpiderMonkey&amp;rft.pub=Mozilla+Developer+Network&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-63"><span class="mw-cite-backlink"><b><a href="#cite_ref-63">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.mozilla.org/rhino/history.html">"Rhino History"</a>. <a href="/wiki/Mozilla_Foundation" title="Mozilla Foundation">Mozilla Foundation</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2008-03-20</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Rhino+History&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.mozilla.org%2Frhino%2Fhistory.html&amp;rft.pub=Mozilla+Foundation&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-64"><span class="mw-cite-backlink"><b><a href="#cite_ref-64">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://github.com/servo/servo/wiki/Roadmap">"Roadmap"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">10 May</span> 2016</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Roadmap&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fgithub.com%2Fservo%2Fservo%2Fwiki%2FRoadmap&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-65"><span class="mw-cite-backlink"><b><a href="#cite_ref-65">^</a></b></span> <span class="reference-text"><cite class="citation web">Larabel, Michael. <a rel="nofollow" class="external text" href="https://www.phoronix.com/scan.php?page=news_item&amp;px=Servo-9-May-2016">"Servo Continues Making Progress For Shipping Components In Gecko, Browser.html"</a>. <i>Phoronix.com</i><span class="reference-accessdate">. Retrieved <span class="nowrap">10 May</span> 2016</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Servo+Continues+Making+Progress+For+Shipping+Components+In+Gecko%2C+Browser.html&amp;rft.aufirst=Michael&amp;rft.aulast=Larabel&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fwww.phoronix.com%2Fscan.php%3Fpage%3Dnews_item%26px%3DServo-9-May-2016&amp;rft.jtitle=Phoronix.com&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-66"><span class="mw-cite-backlink"><b><a href="#cite_ref-66">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://mozvr.com">"Mozilla VR"</a>. <i>Mozilla VR</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2016-10-27</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Mozilla+VR&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fmozvr.com&amp;rft.jtitle=Mozilla+VR&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-67"><span class="mw-cite-backlink"><b><a href="#cite_ref-67">^</a></b></span> <span class="reference-text"><cite class="citation"><a rel="nofollow" class="external text" href="https://login.persona.org/"><i>Persona</i></a>, Mozilla</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Persona&amp;rft.genre=book&amp;rft_id=https%3A%2F%2Flogin.persona.org%2F&amp;rft.pub=Mozilla&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-68"><span class="mw-cite-backlink"><b><a href="#cite_ref-68">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://developer.mozilla.org/en-US/Persona">"Persona"</a>. <i>Mozilla Developer Network</i><span class="reference-accessdate">. Retrieved <span class="nowrap">2016-10-27</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Persona&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fdeveloper.mozilla.org%2Fen-US%2FPersona&amp;rft.jtitle=Mozilla+Developer+Network&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-69"><span class="mw-cite-backlink"><b><a href="#cite_ref-69">^</a></b></span> <span class="reference-text"><cite class="citation"><a rel="nofollow" class="external text" href="https://webmaker.org/en-US/about/"><i>About Mozilla Webmaker</i></a>, Mozilla</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=About+Mozilla+Webmaker&amp;rft.genre=book&amp;rft_id=https%3A%2F%2Fwebmaker.org%2Fen-US%2Fabout%2F&amp;rft.pub=Mozilla&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-lifehacker.com-70"><span class="mw-cite-backlink">^ <a href="#cite_ref-lifehacker.com_70-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-lifehacker.com_70-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><cite class="citation web">Alan Henry. <a rel="nofollow" class="external text" href="http://lifehacker.com/mozilla-webmaker-teaches-you-how-to-build-web-sites-ap-1553277374">"Mozilla Webmaker Teaches You to Build Web Sites, Apps, and More"</a>. <i>Lifehacker</i>. Gawker Media.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Mozilla+Webmaker+Teaches+You+to+Build+Web+Sites%2C+Apps%2C+and+More&amp;rft.au=Alan+Henry&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Flifehacker.com%2Fmozilla-webmaker-teaches-you-how-to-build-web-sites-ap-1553277374&amp;rft.jtitle=Lifehacker&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-71"><span class="mw-cite-backlink"><b><a href="#cite_ref-71">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://wiki.mozilla.org/Air_Mozilla">"Air Mozilla"</a>. Mozilla Wiki.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Air+Mozilla&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fwiki.mozilla.org%2FAir_Mozilla&amp;rft.pub=Mozilla+Wiki&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                        <li id="cite_note-72"><span class="mw-cite-backlink"><b><a href="#cite_ref-72">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://blog.mozilla.org/mrz/2012/04/17/air-mozilla-reboot-phase-i/">"Air Mozilla Reboot, Phase I"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Air+Mozilla+Reboot%2C+Phase+I&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fblog.mozilla.org%2Fmrz%2F2012%2F04%2F17%2Fair-mozilla-reboot-phase-i%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook" class="Z3988"><span style="display:none;">&#160;</span></span>
                            </span>
                        </li>
                    </ol>
                </div>
                <p><a rel="nofollow" class="external text" href="http://www.techsive.com/2014/09/how-to-resume-failed-downloads-in.html">Constant downloads failure in firefox</a></p>
                <h2><span class="mw-headline" id="External_links">External links</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Mozilla&amp;action=edit&amp;section=36" title="Edit section: External links">edit</a><span class="mw-editsection-bracket">]</span></span>
                </h2>
                <table role="presentation" class="mbox-small plainlinks sistersitebox" style="border:1px solid #aaa;background-color:#f9f9f9">
                    <tr>
                        <td class="mbox-image">
                            <a href="/wiki/File:Commons-logo.svg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" width="30" height="40" class="noviewer" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/45px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/59px-Commons-logo.svg.png 2x" data-file-width="1024" data-file-height="1376" /></a>
                        </td>
                        <td class="mbox-text plainlist">Wikimedia Commons has media related to <i><b><a href="https://commons.wikimedia.org/wiki/Category:Mozilla" class="extiw" title="commons:Category:Mozilla">Mozilla</a></b></i>.</td>
                    </tr>
                </table>
                <ul>
                    <li><span class="official-website"><span class="url"><a rel="nofollow" class="external text" href="http://mozilla.org/">Official website</a></span></span>, including <a rel="nofollow" class="external text" href="https://www.mozilla.org/en-US/about/manifesto/">the Mozilla Manifesto</a></li>
                    <li><a rel="nofollow" class="external text" href="https://wiki.mozilla.org/">Mozilla Wiki</a>(<a href="https://wiki.mozilla.org/Timeline" class="extiw" title="mozillawiki:Timeline">Major time line of community development</a>)</li>
                    <li><a rel="nofollow" class="external text" href="//hg.mozilla.org/">Mozilla Mercurial Repository</a></li>
                </ul>
                <div role="navigation" class="navbox" aria-labelledby="Mozilla" style="padding:3px">
                    <table class="nowraplinks hlist collapsible collapsed navbox-inner" style="border-spacing:0;background:transparent;color:inherit">
                        <tr>
                            <th scope="col" class="navbox-title" colspan="2">
                                <div class="plainlinks hlist navbar mini">
                                    <ul>
                                        <li class="nv-view"><a href="/wiki/Template:Mozilla" title="Template:Mozilla"><abbr title="View this template" style=";;background:none transparent;border:none;">v</abbr></a></li>
                                        <li class="nv-talk"><a href="/wiki/Template_talk:Mozilla" title="Template talk:Mozilla"><abbr title="Discuss this template" style=";;background:none transparent;border:none;">t</abbr></a></li>
                                        <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Mozilla&amp;action=edit"><abbr title="Edit this template" style=";;background:none transparent;border:none;">e</abbr></a></li>
                                    </ul>
                                </div>
                                <div id="Mozilla" style="font-size:114%"><strong class="selflink">Mozilla</strong></div>
                            </th>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px">
                                <div style="padding:0em 0.25em"></div>
                                <table class="nowraplinks collapsible collapsed navbox-subgroup" style="border-spacing:0">
                                    <tr>
                                        <th scope="col" class="navbox-title" colspan="2" style=";"><span style="float:left;width:6em">&#160;</span>
                                            <div id="Projects" style="font-size:114%">Projects</div>
                                        </th>
                                    </tr>
                                    <tr style="height:2px">
                                        <td colspan="2"></td>
                                    </tr>
                                    <tr>
                                        <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px">
                                            <div style="padding:0em 0.25em"></div>
                                            <table class="nowraplinks navbox-subgroup" style="border-spacing:0">
                                                <tr>
                                                    <th scope="row" class="navbox-group">Mozilla<br /> Labs
                                                    </th>
                                                    <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                        <div style="padding:0em 0.25em">
                                                            <ul>
                                                                <li><a href="/wiki/Bonsai_(software)" title="Bonsai (software)">Bonsai</a></li>
                                                                <li><a href="/wiki/Bugzilla" title="Bugzilla">Bugzilla</a></li>
                                                                <li><a href="/wiki/ChatZilla" title="ChatZilla">ChatZilla</a></li>
                                                                <li><a href="/wiki/Electrolysis_Project" class="mw-redirect" title="Electrolysis Project">Electrolysis Project</a></li>
                                                                <li><a href="/wiki/Jetpack_(Firefox_project)" title="Jetpack (Firefox project)">Jetpack</a></li>
                                                                <li><a href="/wiki/Lightning_(software)" title="Lightning (software)">Lightning</a></li>
                                                                <li><a href="/wiki/Mozilla_Persona" title="Mozilla Persona">Persona</a></li>
                                                                <li><a href="/wiki/Mozilla_Prism" title="Mozilla Prism">Prism</a></li>
                                                                <li><a href="/wiki/Mozilla_Raindrop" title="Mozilla Raindrop">Raindrop</a></li>
                                                                <li><a href="/wiki/Mozilla_Skywriter" title="Mozilla Skywriter">Skywriter</a></li>
                                                                <li><a href="/wiki/Mozilla_Sunbird" title="Mozilla Sunbird">Sunbird</a></li>
                                                                <li><a href="/wiki/PDF.js" title="PDF.js">PDF.js</a></li>
                                                                <li><a href="/wiki/Firefox_Sync" title="Firefox Sync">Sync</a></li>
                                                                <li>Tinderbox</li>
                                                                <li><a href="/wiki/Ubiquity_(Firefox)" title="Ubiquity (Firefox)">Ubiquity</a></li>
                                                            </ul>
                                                        </div>
                                                    </td>
                                                </tr>
                                                <tr style="height:2px">
                                                    <td colspan="2"></td>
                                                </tr>
                                                <tr>
                                                    <th scope="row" class="navbox-group">Mozilla<br /> Research
                                                    </th>
                                                    <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                        <div style="padding:0em 0.25em">
                                                            <ul>
                                                                <li><a href="/wiki/Daala" title="Daala">Daala</a></li>
                                                                <li><a href="/wiki/Firefox_OS" title="Firefox OS">Firefox OS</a></li>
                                                                <li><a href="/wiki/OpenFlint" title="OpenFlint">OpenFlint</a></li>
                                                                <li><a href="/wiki/Rust_(programming_language)" title="Rust (programming language)">Rust</a></li>
                                                                <li><a href="/wiki/Servo_(layout_engine)" title="Servo (layout engine)">Servo</a></li>
                                                                <li><a href="/wiki/Shumway_(software)" title="Shumway (software)">Shumway</a></li>
                                                            </ul>
                                                        </div>
                                                    </td>
                                                </tr>
                                                <tr style="height:2px">
                                                    <td colspan="2"></td>
                                                </tr>
                                                <tr>
                                                    <th scope="row" class="navbox-group">Mozilla<br /> Foundation
                                                    </th>
                                                    <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                        <div style="padding:0em 0.25em"></div>
                                                        <table class="nowraplinks navbox-subgroup" style="border-spacing:0">
                                                            <tr>
                                                                <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px">
                                                                    <div style="padding:0em 0.25em">
                                                                        <ul>
                                                                            <li><a href="/wiki/Firefox" title="Firefox">Firefox</a>
                                                                                <ul>
                                                                                    <li><i><a href="/wiki/Firefox_1" class="mw-redirect" title="Firefox 1">1</a></i></li>
                                                                                    <li><i><a href="/wiki/Firefox_1.5" class="mw-redirect" title="Firefox 1.5">1.5</a></i></li>
                                                                                    <li><i><a href="/wiki/Firefox_2" title="Firefox 2">2</a></i></li>
                                                                                    <li><i><a href="/wiki/Firefox_3" class="mw-redirect" title="Firefox 3">3</a></i></li>
                                                                                    <li><i><a href="/wiki/Firefox_3.5" title="Firefox 3.5">3.5</a></i></li>
                                                                                    <li><a href="/wiki/Firefox_3.6" title="Firefox 3.6">3.6</a></li>
                                                                                    <li><i><a href="/wiki/Firefox_4" title="Firefox 4">4</a></i></li>
                                                                                    <li><i><a href="/wiki/History_of_Firefox#Rapid_release" title="History of Firefox">5–current</a></i></li>
                                                                                    <li><a href="/wiki/History_of_Firefox#Future_releases" title="History of Firefox">Future releases</a></li>
                                                                                    <li><a href="/wiki/Firefox_for_mobile" class="mw-redirect" title="Firefox for mobile">for Mobile</a></li>
                                                                                    <li><a href="/wiki/Firefox_for_iOS" title="Firefox for iOS">for iOS</a></li>
                                                                                </ul>
                                                                            </li>
                                                                            <li><a href="/wiki/SeaMonkey" title="SeaMonkey">SeaMonkey</a></li>
                                                                            <li><a href="/wiki/Mozilla_Thunderbird" title="Mozilla Thunderbird">Thunderbird</a></li>
                                                                        </ul>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr style="height:2px">
                                                                <td colspan="2"></td>
                                                            </tr>
                                                            <tr>
                                                                <th scope="row" class="navbox-group">Origins</th>
                                                                <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                                    <div style="padding:0em 0.25em">
                                                                        <ul>
                                                                            <li><a href="/wiki/Mozilla_Application_Suite" title="Mozilla Application Suite">Mozilla Application Suite</a></li>
                                                                            <li><a href="/wiki/Netscape_Navigator" title="Netscape Navigator">Netscape Navigator</a></li>
                                                                            <li><a href="/wiki/Netscape_Communicator" title="Netscape Communicator">Netscape Communicator</a></li>
                                                                            <li><a href="/wiki/Netscape" title="Netscape">Netscape Communications</a></li>
                                                                            <li><a href="/wiki/Beonex_Communicator" title="Beonex Communicator">Beonex Communicator</a></li>
                                                                        </ul>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr style="height:2px">
                                                                <td colspan="2"></td>
                                                            </tr>
                                                            <tr>
                                                                <th scope="row" class="navbox-group">Forks</th>
                                                                <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                                    <div style="padding:0em 0.25em">
                                                                        <ul>
                                                                            <li><a href="/wiki/GNewSense#Comparison_with_other_distributions" title="GNewSense">BurningDog</a></li>
                                                                            <li><a href="/wiki/Classilla" title="Classilla">Classilla</a></li>
                                                                            <li><i><a href="/wiki/Flock_(web_browser)" title="Flock (web browser)">Flock</a></i></li>
                                                                            <li><a href="/wiki/Gnuzilla" title="Gnuzilla">Gnuzilla</a></li>
                                                                            <li><a href="/wiki/Mozilla_software_rebranded_by_Debian#Iceape" title="Mozilla software rebranded by Debian">Iceape</a></li>
                                                                            <li><a href="/wiki/GNU_IceCat" title="GNU IceCat">IceCat</a></li>
                                                                            <li><a href="/wiki/Mozilla_software_rebranded_by_Debian#Icedove" title="Mozilla software rebranded by Debian">Icedove</a></li>
                                                                            <li><a href="/wiki/Mozilla_software_rebranded_by_Debian#Iceowl" title="Mozilla software rebranded by Debian">Iceowl</a></li>
                                                                            <li><a href="/wiki/Miro_(software)" title="Miro (software)">Miro</a></li>
                                                                            <li><i><a href="/wiki/Netscape_Navigator_9" title="Netscape Navigator 9">Netscape 9</a></i></li>
                                                                            <li><a href="/wiki/Pale_Moon_(web_browser)" title="Pale Moon (web browser)">Pale Moon</a></li>
                                                                            <li><a href="/wiki/Firefox_Portable" title="Firefox Portable">Portable Edition</a></li>
                                                                            <li><i><a href="/wiki/Swiftfox" title="Swiftfox">Swiftfox</a></i></li>
                                                                            <li><i><a href="/wiki/Swiftweasel" title="Swiftweasel">Swiftweasel</a></i></li>
                                                                            <li><a href="/wiki/TenFourFox" title="TenFourFox">TenFourFox</a></li>
                                                                            <li><i><a href="/wiki/XB_Browser" title="XB Browser">xB Browser</a></i></li>
                                                                        </ul>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr style="height:2px">
                                                                <td colspan="2"></td>
                                                            </tr>
                                                            <tr>
                                                                <th scope="row" class="navbox-group">Frameworks</th>
                                                                <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                                    <div style="padding:0em 0.25em">
                                                                        <ul>
                                                                            <li><a href="/wiki/Add-on_(Mozilla)" title="Add-on (Mozilla)">add-on</a></li>
                                                                            <li><a href="/wiki/Gecko_(software)" title="Gecko (software)">Gecko</a></li>
                                                                            <li><a href="/wiki/Mozilla_application_framework" title="Mozilla application framework">Necko</a></li>
                                                                            <li><a href="/wiki/NPAPI" title="NPAPI">NPAPI</a>
                                                                                <ul>
                                                                                    <li><a href="/wiki/NPAPI#XPConnect" title="NPAPI">XPConnect</a></li>
                                                                                </ul>
                                                                            </li>
                                                                            <li><a href="/wiki/XBL" title="XBL">XBL</a></li>
                                                                            <li><a href="/wiki/XPCOM" title="XPCOM">XPCOM</a></li>
                                                                            <li><a href="/wiki/XPInstall" title="XPInstall">XPInstall</a></li>
                                                                            <li><a href="/wiki/XUL" title="XUL">XUL</a></li>
                                                                            <li><a href="/wiki/XULRunner" title="XULRunner">XULRunner</a></li>
                                                                        </ul>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr style="height:2px">
                                                                <td colspan="2"></td>
                                                            </tr>
                                                            <tr>
                                                                <th scope="row" class="navbox-group">Components</th>
                                                                <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                                    <div style="padding:0em 0.25em">
                                                                        <ul>
                                                                            <li><a href="/w/index.php?title=Application_Object_Model&amp;action=edit&amp;redlink=1" class="new" title="Application Object Model (page does not exist)">Application Object Model</a></li>
                                                                            <li><a href="/wiki/Mozilla_Composer" title="Mozilla Composer">Composer</a></li>
                                                                            <li><a href="/wiki/Netscape_Portable_Runtime" title="Netscape Portable Runtime">NSPR</a></li>
                                                                            <li><a href="/wiki/Network_Security_Services" title="Network Security Services">NSS</a></li>
                                                                            <li><a href="/wiki/Rhino_(JavaScript_engine)" title="Rhino (JavaScript engine)">Rhino</a></li>
                                                                            <li><a href="/wiki/SpiderMonkey" title="SpiderMonkey">SpiderMonkey</a></li>
                                                                            <li><a href="/wiki/Tamarin_(software)" title="Tamarin (software)">Tamarin</a></li>
                                                                            <li><a href="/wiki/Venkman" title="Venkman">Venkman</a></li>
                                                                        </ul>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                            <tr style="height:2px">
                                                                <td colspan="2"></td>
                                                            </tr>
                                                            <tr>
                                                                <th scope="row" class="navbox-group">Discontinued</th>
                                                                <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                                    <div style="padding:0em 0.25em">
                                                                        <ul>
                                                                            <li><a href="/wiki/Mozilla_Calendar_Project" title="Mozilla Calendar Project">Calendar Project</a></li>
                                                                            <li><a href="/wiki/Camino_(web_browser)" title="Camino (web browser)">Camino</a></li>
                                                                            <li><a href="/wiki/Firefox_Home" class="mw-redirect" title="Firefox Home">Firefox Home</a></li>
                                                                            <li><a href="/wiki/Mozilla_Grendel" title="Mozilla Grendel">Grendel</a></li>
                                                                            <li><a href="/wiki/Minimo" title="Minimo">Minimo</a></li>
                                                                        </ul>
                                                                    </div>
                                                                </td>
                                                            </tr>
                                                        </table>
                                                    </td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <td colspan="2" class="navbox-list navbox-even" style="width:100%;padding:0px">
                                <div style="padding:0em 0.25em"></div>
                                <table class="nowraplinks collapsible collapsed navbox-subgroup" style="border-spacing:0">
                                    <tr>
                                        <th scope="col" class="navbox-title" colspan="2" style=";"><span style="float:left;width:6em">&#160;</span>
                                            <div id="Organization" style="font-size:114%">Organization</div>
                                        </th>
                                    </tr>
                                    <tr style="height:2px">
                                        <td colspan="2"></td>
                                    </tr>
                                    <tr>
                                        <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px">
                                            <div style="padding:0em 0.25em"></div>
                                            <table class="nowraplinks navbox-subgroup" style="border-spacing:0">
                                                <tr>
                                                    <th scope="row" class="navbox-group"><strong class="selflink">Foundation</strong></th>
                                                    <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                        <div style="padding:0em 0.25em">
                                                            <ul>
                                                                <li><i>Former <a href="/wiki/Mozilla_Organization" class="mw-redirect" title="Mozilla Organization">Mozilla Organization</a></i></li>
                                                                <li><a href="/wiki/Mozilla_Foundation" title="Mozilla Foundation">Mozilla Foundation</a></li>
                                                            </ul>
                                                        </div>
                                                    </td>
                                                </tr>
                                                <tr style="height:2px">
                                                    <td colspan="2"></td>
                                                </tr>
                                                <tr>
                                                    <th scope="row" class="navbox-group">Subsidiaries</th>
                                                    <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                        <div style="padding:0em 0.25em">
                                                            <ul>
                                                                <li><a href="/wiki/Mozilla_Corporation" title="Mozilla Corporation">Mozilla Corporation</a></li>
                                                                <li><a href="/wiki/Mozilla_Messaging" title="Mozilla Messaging">Mozilla Messaging</a></li>
                                                                <li><a href="/wiki/Mozilla_Foundation#Mozilla_Online" title="Mozilla Foundation">Mozilla Online</a></li>
                                                            </ul>
                                                        </div>
                                                    </td>
                                                </tr>
                                                <tr style="height:2px">
                                                    <td colspan="2"></td>
                                                </tr>
                                                <tr>
                                                    <th scope="row" class="navbox-group">Official affiliates</th>
                                                    <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                        <div style="padding:0em 0.25em">
                                                            <ul>
                                                                <li><a href="/wiki/Mozilla_China" title="Mozilla China">Mozilla China</a></li>
                                                                <li><a href="/wiki/Mozilla_Europe" title="Mozilla Europe">Mozilla Europe</a></li>
                                                                <li><a href="/wiki/Mozilla_Japan" title="Mozilla Japan">Mozilla Japan</a></li>
                                                                <li><a href="/wiki/Mozilla_Taiwan" title="Mozilla Taiwan">Mozilla Taiwan</a></li>
                                                            </ul>
                                                        </div>
                                                    </td>
                                                </tr>
                                                <tr style="height:2px">
                                                    <td colspan="2"></td>
                                                </tr>
                                                <tr>
                                                    <th scope="row" class="navbox-group">People</th>
                                                    <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                                        <div style="padding:0em 0.25em">
                                                            <ul>
                                                                <li><a href="/wiki/Mitchell_Baker" title="Mitchell Baker">Mitchell Baker</a></li>
                                                                <li><a href="/w/index.php?title=David_Baron_(Computer_Scientist)&amp;action=edit&amp;redlink=1" class="new" title="David Baron (Computer Scientist) (page does not exist)">David Baron</a></li>
                                                                <li><a href="/wiki/Sheeri_Cabral" title="Sheeri Cabral">Sheeri Cabral</a></li>
                                                                <li><a href="/wiki/Tantek_%C3%87elik" title="Tantek Çelik">Tantek Çelik</a></li>
                                                                <li><a href="/wiki/Asa_Dotzler" title="Asa Dotzler">Asa Dotzler</a></li>
                                                                <li><a href="/wiki/Brendan_Eich" title="Brendan Eich">Brendan Eich</a></li>
                                                                <li><a href="/wiki/John_Hammink" title="John Hammink">John Hammink</a></li>
                                                                <li><a href="/w/index.php?title=Robert_O%27Callahan&amp;action=edit&amp;redlink=1" class="new" title="Robert O'Callahan (page does not exist)">Robert O'Callahan</a></li>
                                                                <li><a href="/wiki/Johnny_Stenb%C3%A4ck" title="Johnny Stenbäck">Johnny Stenbäck</a></li>
                                                                <li><a href="/wiki/Doug_Turner_(Mozilla)" title="Doug Turner (Mozilla)">Doug Turner</a></li>
                                                                <li><a href="/w/index.php?title=Boris_Zbarsky&amp;action=edit&amp;redlink=1" class="new" title="Boris Zbarsky (page does not exist)">Boris Zbarsky</a></li>
                                                            </ul>
                                                        </div>
                                                    </td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px">
                                <div style="padding:0em 0.25em"></div>
                                <table class="nowraplinks collapsible collapsed navbox-subgroup" style="border-spacing:0">
                                    <tr>
                                        <th scope="col" class="navbox-title" colspan="2" style=";"><span style="float:left;width:6em">&#160;</span>
                                            <div id="Community" style="font-size:114%">Community</div>
                                        </th>
                                    </tr>
                                    <tr style="height:2px">
                                        <td colspan="2"></td>
                                    </tr>
                                    <tr>
                                        <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px">
                                            <div style="padding:0em 0.25em">
                                                <ul>
                                                    <li><a href="/wiki/Mozdev.org" title="Mozdev.org">mozdev.org</a></li>
                                                    <li><a href="/wiki/Mozilla_Add-ons" class="mw-redirect" title="Mozilla Add-ons">Mozilla Add-ons</a></li>
                                                    <li><a href="/wiki/Mozilla_Developer_Network" title="Mozilla Developer Network">Mozilla Developer Network</a></li>
                                                    <li><a href="/wiki/MozillaZine" title="MozillaZine">MozillaZine</a></li>
                                                    <li><a href="/wiki/Firefox#Promotion" title="Firefox">Spread Firefox</a></li>
                                                </ul>
                                            </div>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <td colspan="2" class="navbox-list navbox-even" style="width:100%;padding:0px">
                                <div style="padding:0em 0.25em"></div>
                                <table class="nowraplinks collapsible collapsed navbox-subgroup" style="border-spacing:0">
                                    <tr>
                                        <th scope="col" class="navbox-title" colspan="2" style=";"><span style="float:left;width:6em">&#160;</span>
                                            <div id="Other_topics" style="font-size:114%">Other topics</div>
                                        </th>
                                    </tr>
                                    <tr style="height:2px">
                                        <td colspan="2"></td>
                                    </tr>
                                    <tr>
                                        <td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px">
                                            <div style="padding:0em 0.25em">
                                                <ul>
                                                    <li><i><a href="/wiki/The_Book_of_Mozilla" title="The Book of Mozilla">The Book of Mozilla</a></i></li>
                                                    <li><i><a href="/wiki/Code_Rush" title="Code Rush">Code Rush</a></i></li>
                                                    <li><a href="/wiki/Mozilla_Public_License" title="Mozilla Public License">Mozilla Public License</a></li>
                                                    <li><a href="/wiki/Mozilla_localizations" title="Mozilla localizations">Localizations</a></li>
                                                    <li><a href="/wiki/Mozilla_(mascot)" title="Mozilla (mascot)">Mascot</a></li>
                                                    <li><a href="/wiki/Mozilla_software_rebranded_by_Debian" title="Mozilla software rebranded by Debian">Rebranding / forking</a></li>
                                                </ul>
                                            </div>
                                        </td>
                                    </tr>
                                </table>
                            </td>
                        </tr>
                    </table>
                </div>
                <div role="navigation" class="navbox" aria-labelledby="Free_and_open-source_software" style="padding:3px">
                    <table class="nowraplinks hlist collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit">
                        <tr>
                            <th scope="col" class="navbox-title" colspan="2">
                                <div class="plainlinks hlist navbar mini">
                                    <ul>
                                        <li class="nv-view"><a href="/wiki/Template:FOSS" title="Template:FOSS"><abbr title="View this template" style=";;background:none transparent;border:none;">v</abbr></a></li>
                                        <li class="nv-talk"><a href="/wiki/Template_talk:FOSS" title="Template talk:FOSS"><abbr title="Discuss this template" style=";;background:none transparent;border:none;">t</abbr></a></li>
                                        <li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:FOSS&amp;action=edit"><abbr title="Edit this template" style=";;background:none transparent;border:none;">e</abbr></a></li>
                                    </ul>
                                </div>
                                <div id="Free_and_open-source_software" style="font-size:114%"><a href="/wiki/Free_and_open-source_software" title="Free and open-source software">Free and open-source software</a></div>
                            </th>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <th scope="row" class="navbox-group">General</th>
                            <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                <div style="padding:0em 0.25em">
                                    <ul>
                                        <li><a href="/wiki/Alternative_terms_for_free_software" title="Alternative terms for free software">Alternative terms for free software</a></li>
                                        <li><a href="/wiki/Comparison_of_open-source_and_closed-source_software" title="Comparison of open-source and closed-source software">Comparison of open-source and closed-source software</a></li>
                                        <li><a href="/wiki/Comparison_of_source_code_hosting_facilities" title="Comparison of source code hosting facilities">Comparison of source code hosting facilities</a></li>
                                        <li><a href="/wiki/Free_software" title="Free software">Free software</a></li>
                                        <li><a href="/wiki/List_of_free_software_project_directories" title="List of free software project directories">Free software project directories</a></li>
                                        <li><a href="/wiki/Gratis_versus_libre" title="Gratis versus libre">Gratis versus libre</a></li>
                                        <li><a href="/wiki/Long-term_support" title="Long-term support">Long-term support</a></li>
                                        <li><a href="/wiki/Open-source_software" title="Open-source software">Open-source software</a></li>
                                        <li><a href="/wiki/Open-source_software_development" title="Open-source software development">Open-source software development</a></li>
                                        <li><a href="/wiki/Outline_of_free_software" title="Outline of free software">Outline</a></li>
                                    </ul>
                                </div>
                            </td>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <th scope="row" class="navbox-group"><a href="/wiki/List_of_free_and_open-source_software_packages" title="List of free and open-source software packages">Software<br />
packages</a></th>
                            <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                <div style="padding:0em 0.25em">
                                    <ul>
                                        <li><a href="/wiki/Comparison_of_free_software_for_audio" title="Comparison of free software for audio">Audio</a></li>
                                        <li><a href="/wiki/List_of_open-source_bioinformatics_software" title="List of open-source bioinformatics software">Bioinformatics</a></li>
                                        <li><a href="/wiki/List_of_open-source_codecs" title="List of open-source codecs">Codecs</a></li>
                                        <li><a href="/wiki/List_of_collaborative_software#Open_source_software" title="List of collaborative software">Collaboration</a></li>
                                        <li><a href="/wiki/Comparison_of_open-source_configuration_management_software" title="Comparison of open-source configuration management software">Configuration management</a></li>
                                        <li><a href="/wiki/Device_driver#Open_drivers" title="Device driver">Device drivers</a>
                                            <ul>
                                                <li><a href="/wiki/Free_and_open-source_graphics_device_driver" title="Free and open-source graphics device driver">Graphics</a></li>
                                                <li><a href="/wiki/Comparison_of_open-source_wireless_drivers" title="Comparison of open-source wireless drivers">Wireless</a></li>
                                            </ul>
                                        </li>
                                        <li><a href="/wiki/Comparison_of_free_geophysics_software" title="Comparison of free geophysics software">Geophysics</a></li>
                                        <li><a href="/wiki/List_of_open-source_health_software" title="List of open-source health software">Health</a></li>
                                        <li><a href="/wiki/List_of_open-source_software_for_mathematics" title="List of open-source software for mathematics">Mathematics</a></li>
                                        <li><a href="/wiki/Comparison_of_open-source_operating_systems" title="Comparison of open-source operating systems">Operating systems</a></li>
                                        <li><a href="/wiki/Comparison_of_open-source_programming_language_licensing" title="Comparison of open-source programming language licensing">Programming languages</a></li>
                                        <li><a href="/wiki/List_of_open-source_routing_platforms" title="List of open-source routing platforms">Routing</a></li>
                                        <li><a href="/wiki/List_of_statistical_packages#Open-source_statistical_packages" title="List of statistical packages">Statistics</a></li>
                                        <li><a href="/wiki/List_of_free_television_software" title="List of free television software">Television</a></li>
                                        <li><a href="/wiki/List_of_open-source_video_games" title="List of open-source video games">Video games</a></li>
                                        <li><a href="/wiki/List_of_free_software_web_applications" title="List of free software web applications">Web applications</a>
                                            <ul>
                                                <li><a href="/wiki/List_of_content_management_systems#Open_source_software" title="List of content management systems">Content management systems</a></li>
                                                <li><a href="/wiki/Comparison_of_free_software_e-commerce_web_application_frameworks" class="mw-redirect" title="Comparison of free software e-commerce web application frameworks">E-commerce</a></li>
                                            </ul>
                                        </li>
                                        <li><a href="/wiki/List_of_word_processors#Free_and_open-source_software" title="List of word processors">Word processors</a></li>
                                        <li><a href="/wiki/List_of_free_and_open-source_Android_applications" title="List of free and open-source Android applications">Android apps</a></li>
                                        <li><a href="/wiki/List_of_free_and_open-source_iOS_applications" title="List of free and open-source iOS applications">iOS apps</a></li>
                                        <li><a href="/wiki/List_of_commercial_open-source_applications_and_services" title="List of commercial open-source applications and services">Commercial</a></li>
                                        <li><a href="/wiki/List_of_trademarked_open-source_software" title="List of trademarked open-source software">Trademarked</a></li>
                                        <li><a href="/wiki/List_of_formerly_proprietary_software" title="List of formerly proprietary software">Formerly proprietary</a></li>
                                    </ul>
                                </div>
                            </td>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <th scope="row" class="navbox-group">Community</th>
                            <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                <div style="padding:0em 0.25em">
                                    <ul>
                                        <li><a href="/wiki/Free_software_movement" title="Free software movement">Free software movement</a></li>
                                        <li><a href="/wiki/History_of_free_and_open-source_software" title="History of free and open-source software">History</a></li>
                                        <li><a href="/wiki/Open-source_movement" title="Open-source movement">Open-source movement</a></li>
                                        <li><a href="/wiki/List_of_free_and_open-source_software_organizations" title="List of free and open-source software organizations">Organizations</a></li>
                                        <li><a href="/wiki/List_of_free-software_events" title="List of free-software events">Events</a></li>
                                    </ul>
                                </div>
                            </td>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <th scope="row" class="navbox-group"><a href="/wiki/Free_software_license" title="Free software license">Licenses</a></th>
                            <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                <div style="padding:0em 0.25em">
                                    <ul>
                                        <li><a href="/wiki/Apache_License" title="Apache License">Apache</a></li>
                                        <li><a href="/wiki/Apple_Public_Source_License" title="Apple Public Source License">APSL</a></li>
                                        <li><a href="/wiki/Artistic_License" title="Artistic License">Artistic</a></li>
                                        <li><a href="/wiki/Beerware" title="Beerware">Beerware</a></li>
                                        <li><a href="/wiki/Boost_Software_License" class="mw-redirect" title="Boost Software License">Boost</a></li>
                                        <li><a href="/wiki/BSD_licenses" title="BSD licenses">BSD</a></li>
                                        <li><a href="/wiki/CC0" class="mw-redirect" title="CC0">CC0</a></li>
                                        <li><a href="/wiki/Common_Development_and_Distribution_License" title="Common Development and Distribution License">CDDL</a></li>
                                        <li><a href="/wiki/Eclipse_Public_License" title="Eclipse Public License">EPL</a></li>
                                        <li><a href="/wiki/GNU_General_Public_License" title="GNU General Public License">GNU GPL</a></li>
                                        <li><a href="/wiki/GNU_Lesser_General_Public_License" title="GNU Lesser General Public License">GNU LGPL</a></li>
                                        <li><a href="/wiki/ISC_license" title="ISC license">ISC</a></li>
                                        <li><a href="/wiki/MIT_License" title="MIT License">MIT</a></li>
                                        <li><a href="/wiki/Mozilla_Public_License" title="Mozilla Public License">MPL</a></li>
                                        <li><a href="/wiki/Shared_source#Open_Source_licenses" title="Shared source">Ms-PL/RL</a></li>
                                        <li><a href="/wiki/WTFPL" title="WTFPL">WTFPL</a></li>
                                        <li><a href="/wiki/Zlib_License" title="Zlib License">zlib</a></li>
                                    </ul>
                                </div>
                            </td>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <th scope="row" class="navbox-group">License types<br /> and standards</th>
                            <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                <div style="padding:0em 0.25em">
                                    <ul>
                                        <li><a href="/wiki/Comparison_of_free_and_open-source_software_licenses" title="Comparison of free and open-source software licenses">Comparison of free and open-source software licenses</a></li>
                                        <li><a href="/wiki/Contributor_License_Agreement" title="Contributor License Agreement">Contributor License Agreement</a></li>
                                        <li><a href="/wiki/Copyfree" class="mw-redirect" title="Copyfree">Copyfree</a></li>
                                        <li><a href="/wiki/Copyleft" title="Copyleft">Copyleft</a></li>
                                        <li><a href="/wiki/Debian_Free_Software_Guidelines" title="Debian Free Software Guidelines">Debian Free Software Guidelines</a></li>
                                        <li><a href="/wiki/Definition_of_Free_Cultural_Works" title="Definition of Free Cultural Works">Definition of Free Cultural Works</a></li>
                                        <li><a href="/wiki/Free_license" title="Free license">Free license</a></li>
                                        <li><a href="/wiki/The_Free_Software_Definition" title="The Free Software Definition">The Free Software Definition</a></li>
                                        <li><a href="/wiki/The_Open_Source_Definition" title="The Open Source Definition">The Open Source Definition</a></li>
                                        <li><a href="/wiki/Open-source_license" title="Open-source license">Open-source license</a></li>
                                        <li><a href="/wiki/Permissive_free_software_licence" class="mw-redirect" title="Permissive free software licence">Permissive free software licence</a></li>
                                        <li><a href="/wiki/Public_domain" title="Public domain">Public domain</a></li>
                                        <li><a href="/wiki/Viral_license" title="Viral license">Viral license</a></li>
                                    </ul>
                                </div>
                            </td>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <th scope="row" class="navbox-group">Challenges</th>
                            <td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                <div style="padding:0em 0.25em">
                                    <ul>
                                        <li><a href="/wiki/Binary_blob" title="Binary blob">Binary blob</a></li>
                                        <li><a href="/wiki/Digital_rights_management" title="Digital rights management">Digital rights management</a></li>
                                        <li><a href="/wiki/Hardware_restriction" title="Hardware restriction">Hardware restrictions</a></li>
                                        <li><a href="/wiki/License_proliferation" title="License proliferation">License proliferation</a></li>
                                        <li><a href="/wiki/Mozilla_Corporation_software_rebranded_by_the_Debian_project" class="mw-redirect" title="Mozilla Corporation software rebranded by the Debian project">Mozilla software rebranding</a></li>
                                        <li><a href="/wiki/Proprietary_software" title="Proprietary software">Proprietary software</a></li>
                                        <li><a href="/wiki/SCO/Linux_controversies" title="SCO/Linux controversies">SCO/Linux controversies</a></li>
                                        <li><a href="/wiki/UEFI_Secure_Boot#Secure_boot" class="mw-redirect" title="UEFI Secure Boot">Secure boot</a></li>
                                        <li><a href="/wiki/Software_patents_and_free_software" title="Software patents and free software">Software patents</a></li>
                                        <li><a href="/wiki/Open-source_software_security" title="Open-source software security">Software security</a></li>
                                        <li><a href="/wiki/Trusted_Computing" title="Trusted Computing">Trusted Computing</a></li>
                                    </ul>
                                </div>
                            </td>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <th scope="row" class="navbox-group">Related topics</th>
                            <td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px">
                                <div style="padding:0em 0.25em">
                                    <ul>
                                        <li><i><a href="/wiki/The_Cathedral_and_the_Bazaar" title="The Cathedral and the Bazaar">The Cathedral and the Bazaar</a></i></li>
                                        <li><a href="/wiki/Fork_(software_development)" title="Fork (software development)">Forking</a></li>
                                        <li><a href="/wiki/Microsoft_Open_Specification_Promise" title="Microsoft Open Specification Promise">Microsoft Open Specification Promise</a></li>
                                        <li><i><a href="/wiki/Revolution_OS" title="Revolution OS">Revolution OS</a></i></li>
                                    </ul>
                                </div>
                            </td>
                        </tr>
                        <tr style="height:2px">
                            <td colspan="2"></td>
                        </tr>
                        <tr>
                            <td class="navbox-abovebelow" colspan="2" style="font-weight:bold">
                                <div>
                                    <ul>
                                        <li><img alt="Wikipedia book" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/89/Symbol_book_class2.svg/16px-Symbol_book_class2.svg.png" title="Wikipedia book" width="16" height="16" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/89/Symbol_book_class2.svg/23px-Symbol_book_class2.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/89/Symbol_book_class2.svg/31px-Symbol_book_class2.svg.png 2x" data-file-width="180" data-file-height="185" /> <a href="/wiki/Book:Free_and_Open_Source_Software" title="Book:Free and Open Source Software">Book</a></li>
                                        <li><img alt="Category" src="//upload.wikimedia.org/wikipedia/en/thumb/4/48/Folder_Hexagonal_Icon.svg/16px-Folder_Hexagonal_Icon.svg.png" title="Category" width="16" height="14" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/48/Folder_Hexagonal_Icon.svg/24px-Folder_Hexagonal_Icon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/48/Folder_Hexagonal_Icon.svg/32px-Folder_Hexagonal_Icon.svg.png 2x" data-file-width="36" data-file-height="31" /> <a href="/wiki/Category:Free_software" title="Category:Free software">Category</a></li>
                                        <li><img alt="Commons page" src="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/12px-Commons-logo.svg.png" title="Commons page" width="12" height="16" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/18px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/24px-Commons-logo.svg.png 2x" data-file-width="1024" data-file-height="1376" /> <a href="https://commons.wikimedia.org/wiki/Category:Free_software" class="extiw" title="commons:Category:Free software">Commons</a></li>
                                        <li><img alt="Portal" src="//upload.wikimedia.org/wikipedia/en/thumb/f/fd/Portal-puzzle.svg/16px-Portal-puzzle.svg.png" title="Portal" width="16" height="14" srcset="//upload.wikimedia.org/wikipedia/en/thumb/f/fd/Portal-puzzle.svg/24px-Portal-puzzle.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/f/fd/Portal-puzzle.svg/32px-Portal-puzzle.svg.png 2x" data-file-width="32" data-file-height="28" /> <a href="/wiki/Portal:Free_software" class="mw-redirect" title="Portal:Free software">Portal</a></li>
                                    </ul>
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>


                <!-- Saved in parser cache with key enwiki:pcache:idhash:36754915-0!*!0!!en!4!* and timestamp 20161028065633 and revision id 746574460
 -->
                <script>
                    (window.RLQ = window.RLQ || []).push(function() {
                        mw.log.warn("Gadget \"teahouse\" styles loaded twice. Migrate to type=general. See \u003Chttps://phabricator.wikimedia.org/T42284\u003E.");
                        mw.log.warn("Gadget \"ReferenceTooltips\" styles loaded twice. Migrate to type=general. See \u003Chttps://phabricator.wikimedia.org/T42284\u003E.");
                        mw.log.warn("Gadget \"featured-articles-links\" styles loaded twice. Migrate to type=general. See \u003Chttps://phabricator.wikimedia.org/T42284\u003E.");
                    });
                </script><noscript><img src="//en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" /></noscript></div>
            <div class="printfooter">
                Retrieved from "<a dir="ltr" href="https://en.wikipedia.org/w/index.php?title=Mozilla&amp;oldid=746574460">https://en.wikipedia.org/w/index.php?title=Mozilla&amp;oldid=746574460</a>" </div>
            <div id="catlinks" class="catlinks" data-mw="interface">
                <div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Help:Category" title="Help:Category">Categories</a>:
                    <ul>
                        <li><a href="/wiki/Category:Mozilla" title="Category:Mozilla">Mozilla</a></li>
                        <li><a href="/wiki/Category:Netscape" title="Category:Netscape">Netscape</a></li>
                        <li><a href="/wiki/Category:Projects_established_in_1998" title="Category:Projects established in 1998">Projects established in 1998</a></li>
                    </ul>
                </div>
                <div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Hidden categories:
                    <ul>
                        <li><a href="/wiki/Category:CS1_maint:_Unfit_url" title="Category:CS1 maint: Unfit url">CS1 maint: Unfit url</a></li>
                        <li><a href="/wiki/Category:All_articles_with_unsourced_statements" title="Category:All articles with unsourced statements">All articles with unsourced statements</a></li>
                        <li><a href="/wiki/Category:Articles_with_unsourced_statements_from_August_2015" title="Category:Articles with unsourced statements from August 2015">Articles with unsourced statements from August 2015</a></li>
                        <li><a href="/wiki/Category:Articles_containing_potentially_dated_statements_from_April_2015" title="Category:Articles containing potentially dated statements from April 2015">Articles containing potentially dated statements from April 2015</a></li>
                        <li><a href="/wiki/Category:All_articles_containing_potentially_dated_statements" title="Category:All articles containing potentially dated statements">All articles containing potentially dated statements</a></li>
                        <li><a href="/wiki/Category:Articles_with_unsourced_statements_from_July_2015" title="Category:Articles with unsourced statements from July 2015">Articles with unsourced statements from July 2015</a></li>
                        <li><a href="/wiki/Category:Commons_category_with_page_title_same_as_on_Wikidata" title="Category:Commons category with page title same as on Wikidata">Commons category with page title same as on Wikidata</a></li>
                    </ul>
                </div>
            </div>
            <div class="visualClear"></div>
        </div>
    </div>
    <div id="mw-navigation">
        <h2>Navigation menu</h2>

        <div id="mw-head">
            <div id="p-personal" role="navigation" class="" aria-labelledby="p-personal-label">
                <h3 id="p-personal-label">Personal tools</h3>
                <ul>
                    <li id="pt-anonuserpage">Not logged in</li>
                    <li id="pt-anontalk"><a href="/wiki/Special:MyTalk" title="Discussion about edits from this IP address [n]" accesskey="n">Talk</a></li>
                    <li id="pt-anoncontribs"><a href="/wiki/Special:MyContributions" title="A list of edits made from this IP address [y]" accesskey="y">Contributions</a></li>
                    <li id="pt-createaccount"><a href="/w/index.php?title=Special:CreateAccount&amp;returnto=Mozilla" title="You are encouraged to create an account and log in; however, it is not mandatory">Create account</a></li>
                    <li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Mozilla" title="You're encouraged to log in; however, it's not mandatory. [o]" accesskey="o">Log in</a></li>
                </ul>
            </div>
            <div id="left-navigation">
                <div id="p-namespaces" role="navigation" class="vectorTabs" aria-labelledby="p-namespaces-label">
                    <h3 id="p-namespaces-label">Namespaces</h3>
                    <ul>
                        <li id="ca-nstab-main" class="selected"><span><a href="/wiki/Mozilla"  title="View the content page [c]" accesskey="c">Article</a></span></li>
                        <li id="ca-talk"><span><a href="/wiki/Talk:Mozilla"  title="Discussion about the content page [t]" accesskey="t" rel="discussion">Talk</a></span></li>
                    </ul>
                </div>
                <div id="p-variants" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-variants-label">
                    <h3 id="p-variants-label">
                        <span>Variants</span>
                        <a href="#"></a>
                    </h3>

                    <div class="menu">
                        <ul>
                        </ul>
                    </div>
                </div>
            </div>
            <div id="right-navigation">
                <div id="p-views" role="navigation" class="vectorTabs" aria-labelledby="p-views-label">
                    <h3 id="p-views-label">Views</h3>
                    <ul>
                        <li id="ca-view" class="selected"><span><a href="/wiki/Mozilla" >Read</a></span></li>
                        <li id="ca-edit"><span><a href="/w/index.php?title=Mozilla&amp;action=edit"  title="Edit this page [e]" accesskey="e">Edit</a></span></li>
                        <li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=Mozilla&amp;action=history"  title="Past revisions of this page [h]" accesskey="h">View history</a></span></li>
                    </ul>
                </div>
                <div id="p-cactions" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-cactions-label">
                    <h3 id="p-cactions-label"><span>More</span>
                        <a href="#"></a>
                    </h3>

                    <div class="menu">
                        <ul>
                        </ul>
                    </div>
                </div>
                <div id="p-search" role="search">
                    <h3>
                        <label for="searchInput">Search</label>
                    </h3>

                    <form action="/w/index.php" id="searchform">
                        <div id="simpleSearch">
                            <input type="search" name="search" placeholder="Search Wikipedia" title="Search Wikipedia [f]" accesskey="f" id="searchInput" /><input type="hidden" value="Special:Search" name="title" /><input type="submit" name="fulltext" value="Search" title="Search Wikipedia for this text" id="mw-searchButton" class="searchButton mw-fallbackSearchButton" /><input type="submit" name="go" value="Go" title="Go to a page with this exact name if it exists" id="searchButton" class="searchButton" /> </div>
                    </form>
                </div>
            </div>
        </div>
        <div id="mw-panel">
            <div id="p-logo" role="banner">
                <a class="mw-wiki-logo" href="/wiki/Main_Page" title="Visit the main page"></a>
            </div>
            <div class="portal" role="navigation" id='p-navigation' aria-labelledby='p-navigation-label'>
                <h3 id='p-navigation-label'>Navigation</h3>

                <div class="body">
                    <ul>
                        <li id="n-mainpage-description"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z">Main page</a></li>
                        <li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li>
                        <li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li>
                        <li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li>
                        <li id="n-randompage"><a href="/wiki/Special:Random" title="Load a random article [x]" accesskey="x">Random article</a></li>
                        <li id="n-sitesupport"><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=C13_en.wikipedia.org&amp;uselang=en" title="Support us">Donate to Wikipedia</a></li>
                        <li id="n-shoplink"><a href="//shop.wikimedia.org" title="Visit the Wikipedia store">Wikipedia store</a></li>
                    </ul>
                </div>
            </div>
            <div class="portal" role="navigation" id='p-interaction' aria-labelledby='p-interaction-label'>
                <h3 id='p-interaction-label'>Interaction</h3>

                <div class="body">
                    <ul>
                        <li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li>
                        <li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li>
                        <li id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li>
                        <li id="n-recentchanges"><a href="/wiki/Special:RecentChanges" title="A list of recent changes in the wiki [r]" accesskey="r">Recent changes</a></li>
                        <li id="n-contactpage"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia">Contact page</a></li>
                    </ul>
                </div>
            </div>
            <div class="portal" role="navigation" id='p-tb' aria-labelledby='p-tb-label'>
                <h3 id='p-tb-label'>Tools</h3>

                <div class="body">
                    <ul>
                        <li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/Mozilla" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j">What links here</a></li>
                        <li id="t-recentchangeslinked"><a href="/wiki/Special:RecentChangesLinked/Mozilla" rel="nofollow" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
                        <li id="t-upload"><a href="/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u">Upload file</a></li>
                        <li id="t-specialpages"><a href="/wiki/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li>
                        <li id="t-permalink"><a href="/w/index.php?title=Mozilla&amp;oldid=746574460" title="Permanent link to this revision of the page">Permanent link</a></li>
                        <li id="t-info"><a href="/w/index.php?title=Mozilla&amp;action=info" title="More information about this page">Page information</a></li>
                        <li id="t-wikibase"><a href="https://www.wikidata.org/wiki/Q9661" title="Link to connected data repository item [g]" accesskey="g">Wikidata item</a></li>
                        <li id="t-cite"><a href="/w/index.php?title=Special:CiteThisPage&amp;page=Mozilla&amp;id=746574460" title="Information on how to cite this page">Cite this page</a></li>
                    </ul>
                </div>
            </div>
            <div class="portal" role="navigation" id='p-coll-print_export' aria-labelledby='p-coll-print_export-label'>
                <h3 id='p-coll-print_export-label'>Print/export</h3>

                <div class="body">
                    <ul>
                        <li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=Mozilla">Create a book</a></li>
                        <li id="coll-download-as-rdf2latex"><a href="/w/index.php?title=Special:Book&amp;bookcmd=render_article&amp;arttitle=Mozilla&amp;returnto=Mozilla&amp;oldid=746574460&amp;writer=rdf2latex">Download as PDF</a></li>
                        <li id="t-print"><a href="/w/index.php?title=Mozilla&amp;printable=yes" title="Printable version of this page [p]" accesskey="p">Printable version</a></li>
                    </ul>
                </div>
            </div>
            <div class="portal" role="navigation" id='p-wikibase-otherprojects' aria-labelledby='p-wikibase-otherprojects-label'>
                <h3 id='p-wikibase-otherprojects-label'>In other projects</h3>

                <div class="body">
                    <ul>
                        <li class="wb-otherproject-link wb-otherproject-commons"><a href="https://commons.wikimedia.org/wiki/Category:Mozilla" hreflang="en">Wikimedia Commons</a></li>
                        <li class="wb-otherproject-link wb-otherproject-wikisource"><a href="https://en.wikisource.org/wiki/Portal:Mozilla" hreflang="en">Wikisource</a></li>
                    </ul>
                </div>
            </div>
            <div class="portal" role="navigation" id='p-lang' aria-labelledby='p-lang-label'>
                <h3 id='p-lang-label'>Languages</h3>

                <div class="body">
                    <ul>
                        <li class="interlanguage-link interwiki-af"><a href="https://af.wikipedia.org/wiki/Mozilla" title="Mozilla – Afrikaans" lang="af" hreflang="af" class="interlanguage-link-target">Afrikaans</a></li>
                        <li class="interlanguage-link interwiki-ar"><a href="https://ar.wikipedia.org/wiki/%D9%85%D9%88%D8%B2%D9%8A%D9%84%D8%A7" title="موزيلا – Arabic" lang="ar" hreflang="ar" class="interlanguage-link-target">العربية</a></li>
                        <li class="interlanguage-link interwiki-ast"><a href="https://ast.wikipedia.org/wiki/Mozilla" title="Mozilla – Asturian" lang="ast" hreflang="ast" class="interlanguage-link-target">Asturianu</a></li>
                        <li class="interlanguage-link interwiki-az"><a href="https://az.wikipedia.org/wiki/Mozilla" title="Mozilla – Azerbaijani" lang="az" hreflang="az" class="interlanguage-link-target">Azərbaycanca</a></li>
                        <li class="interlanguage-link interwiki-bn"><a href="https://bn.wikipedia.org/wiki/%E0%A6%AE%E0%A7%8B%E0%A6%9C%E0%A6%BF%E0%A6%B2%E0%A6%BE" title="মোজিলা – Bengali" lang="bn" hreflang="bn" class="interlanguage-link-target">বাংলা</a></li>
                        <li class="interlanguage-link interwiki-zh-min-nan"><a href="https://zh-min-nan.wikipedia.org/wiki/Mozilla" title="Mozilla – Chinese (Min Nan)" lang="zh-min-nan" hreflang="zh-min-nan" class="interlanguage-link-target">Bân-lâm-gú</a></li>
                        <li class="interlanguage-link interwiki-ca"><a href="https://ca.wikipedia.org/wiki/Mozilla" title="Mozilla – Catalan" lang="ca" hreflang="ca" class="interlanguage-link-target">Català</a></li>
                        <li class="interlanguage-link interwiki-cs"><a href="https://cs.wikipedia.org/wiki/Mozilla" title="Mozilla – Czech" lang="cs" hreflang="cs" class="interlanguage-link-target">Čeština</a></li>
                        <li class="interlanguage-link interwiki-da"><a href="https://da.wikipedia.org/wiki/Mozilla" title="Mozilla – Danish" lang="da" hreflang="da" class="interlanguage-link-target">Dansk</a></li>
                        <li class="interlanguage-link interwiki-de"><a href="https://de.wikipedia.org/wiki/Mozilla" title="Mozilla – German" lang="de" hreflang="de" class="interlanguage-link-target">Deutsch</a></li>
                        <li class="interlanguage-link interwiki-fa"><a href="https://fa.wikipedia.org/wiki/%D9%85%D9%88%D8%B2%DB%8C%D9%84%D8%A7" title="موزیلا – Persian" lang="fa" hreflang="fa" class="interlanguage-link-target">فارسی</a></li>
                        <li class="interlanguage-link interwiki-fr"><a href="https://fr.wikipedia.org/wiki/Mozilla_(chronique)" title="Mozilla (chronique) – French" lang="fr" hreflang="fr" class="interlanguage-link-target">Français</a></li>
                        <li class="interlanguage-link interwiki-ko"><a href="https://ko.wikipedia.org/wiki/%EB%AA%A8%EC%A7%88%EB%9D%BC" title="모질라 – Korean" lang="ko" hreflang="ko" class="interlanguage-link-target">한국어</a></li>
                        <li class="interlanguage-link interwiki-hi"><a href="https://hi.wikipedia.org/wiki/%E0%A4%AE%E0%A5%8B%E0%A4%9C%E0%A4%BF%E0%A4%B2%E0%A4%BE" title="मोजिला – Hindi" lang="hi" hreflang="hi" class="interlanguage-link-target">हिन्दी</a></li>
                        <li class="interlanguage-link interwiki-id"><a href="https://id.wikipedia.org/wiki/Mozilla" title="Mozilla – Indonesian" lang="id" hreflang="id" class="interlanguage-link-target">Bahasa Indonesia</a></li>
                        <li class="interlanguage-link interwiki-it"><a href="https://it.wikipedia.org/wiki/Mozilla" title="Mozilla – Italian" lang="it" hreflang="it" class="interlanguage-link-target">Italiano</a></li>
                        <li class="interlanguage-link interwiki-he"><a href="https://he.wikipedia.org/wiki/%D7%9E%D7%95%D7%96%D7%99%D7%9C%D7%94" title="מוזילה – Hebrew" lang="he" hreflang="he" class="interlanguage-link-target">עברית</a></li>
                        <li class="interlanguage-link interwiki-csb"><a href="https://csb.wikipedia.org/wiki/Mozilla" title="Mozilla – Kashubian" lang="csb" hreflang="csb" class="interlanguage-link-target">Kaszëbsczi</a></li>
                        <li class="interlanguage-link interwiki-ku"><a href="https://ku.wikipedia.org/wiki/Mozilla" title="Mozilla – Kurdish" lang="ku" hreflang="ku" class="interlanguage-link-target">Kurdî</a></li>
                        <li class="interlanguage-link interwiki-lt"><a href="https://lt.wikipedia.org/wiki/Mozilla" title="Mozilla – Lithuanian" lang="lt" hreflang="lt" class="interlanguage-link-target">Lietuvių</a></li>
                        <li class="interlanguage-link interwiki-hu"><a href="https://hu.wikipedia.org/wiki/Mozilla" title="Mozilla – Hungarian" lang="hu" hreflang="hu" class="interlanguage-link-target">Magyar</a></li>
                        <li class="interlanguage-link interwiki-mg"><a href="https://mg.wikipedia.org/wiki/Mozilla" title="Mozilla – Malagasy" lang="mg" hreflang="mg" class="interlanguage-link-target">Malagasy</a></li>
                        <li class="interlanguage-link interwiki-ml"><a href="https://ml.wikipedia.org/wiki/%E0%B4%AE%E0%B5%8B%E0%B4%B8%E0%B4%BF%E0%B4%B2%E0%B5%8D%E0%B4%B2" title="മോസില്ല – Malayalam" lang="ml" hreflang="ml" class="interlanguage-link-target">മലയാളം</a></li>
                        <li class="interlanguage-link interwiki-ms"><a href="https://ms.wikipedia.org/wiki/Mozilla" title="Mozilla – Malay" lang="ms" hreflang="ms" class="interlanguage-link-target">Bahasa Melayu</a></li>
                        <li class="interlanguage-link interwiki-nl"><a href="https://nl.wikipedia.org/wiki/Mozilla" title="Mozilla – Dutch" lang="nl" hreflang="nl" class="interlanguage-link-target">Nederlands</a></li>
                        <li class="interlanguage-link interwiki-ja"><a href="https://ja.wikipedia.org/wiki/Mozilla" title="Mozilla – Japanese" lang="ja" hreflang="ja" class="interlanguage-link-target">日本語</a></li>
                        <li class="interlanguage-link interwiki-no"><a href="https://no.wikipedia.org/wiki/Mozilla" title="Mozilla – Norwegian" lang="no" hreflang="no" class="interlanguage-link-target">Norsk bokmål</a></li>
                        <li class="interlanguage-link interwiki-oc"><a href="https://oc.wikipedia.org/wiki/Mozilla" title="Mozilla – Occitan" lang="oc" hreflang="oc" class="interlanguage-link-target">Occitan</a></li>
                        <li class="interlanguage-link interwiki-pl"><a href="https://pl.wikipedia.org/wiki/Mozilla" title="Mozilla – Polish" lang="pl" hreflang="pl" class="interlanguage-link-target">Polski</a></li>
                        <li class="interlanguage-link interwiki-ro"><a href="https://ro.wikipedia.org/wiki/Mozilla" title="Mozilla – Romanian" lang="ro" hreflang="ro" class="interlanguage-link-target">Română</a></li>
                        <li class="interlanguage-link interwiki-sq"><a href="https://sq.wikipedia.org/wiki/Mozilla" title="Mozilla – Albanian" lang="sq" hreflang="sq" class="interlanguage-link-target">Shqip</a></li>
                        <li class="interlanguage-link interwiki-sv"><a href="https://sv.wikipedia.org/wiki/Mozilla" title="Mozilla – Swedish" lang="sv" hreflang="sv" class="interlanguage-link-target">Svenska</a></li>
                        <li class="interlanguage-link interwiki-th"><a href="https://th.wikipedia.org/wiki/%E0%B8%A1%E0%B8%AD%E0%B8%8B%E0%B8%B4%E0%B8%A5%E0%B8%A5%E0%B8%B2" title="มอซิลลา – Thai" lang="th" hreflang="th" class="interlanguage-link-target">ไทย</a></li>
                        <li class="interlanguage-link interwiki-tr"><a href="https://tr.wikipedia.org/wiki/Mozilla" title="Mozilla – Turkish" lang="tr" hreflang="tr" class="interlanguage-link-target">Türkçe</a></li>
                        <li class="interlanguage-link interwiki-ur"><a href="https://ur.wikipedia.org/wiki/%D9%85%D9%88%D8%B2%DB%8C%D9%84%D8%A7" title="موزیلا – Urdu" lang="ur" hreflang="ur" class="interlanguage-link-target">اردو</a></li>
                        <li class="interlanguage-link interwiki-vi"><a href="https://vi.wikipedia.org/wiki/Mozilla" title="Mozilla – Vietnamese" lang="vi" hreflang="vi" class="interlanguage-link-target">Tiếng Việt</a></li>
                        <li class="interlanguage-link interwiki-zh"><a href="https://zh.wikipedia.org/wiki/Mozilla" title="Mozilla – Chinese" lang="zh" hreflang="zh" class="interlanguage-link-target">中文</a></li>
                        <li class="uls-p-lang-dummy">
                            <a href="#"></a>
                        </li>
                    </ul>
                    <div class='after-portlet after-portlet-lang'><span class="wb-langlinks-edit wb-langlinks-link"><a href="https://www.wikidata.org/wiki/Q9661#sitelinks-wikipedia" title="Edit interlanguage links" class="wbc-editpage">Edit links</a></span></div>
                </div>
            </div>
        </div>
    </div>
    <div id="footer" role="contentinfo">
        <ul id="footer-info">
            <li id="footer-info-lastmod"> This page was last modified on 28 October 2016, at 06:56.</li>
            <li id="footer-info-copyright">Text is available under the <a rel="license" href="//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License">Creative Commons Attribution-ShareAlike License</a>
                <a rel="license" href="//creativecommons.org/licenses/by-sa/3.0/" style="display:none;"></a>; additional terms may apply. By using this site, you agree to the <a href="//wikimediafoundation.org/wiki/Terms_of_Use">Terms of Use</a> and <a href="//wikimediafoundation.org/wiki/Privacy_policy">Privacy Policy</a>. Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
        </ul>
        <ul id="footer-places">
            <li id="footer-places-privacy"><a href="https://wikimediafoundation.org/wiki/Privacy_policy" class="extiw" title="wmf:Privacy policy">Privacy policy</a></li>
            <li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
            <li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
            <li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
            <li id="footer-places-developers"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Developers</a></li>
            <li id="footer-places-cookiestatement"><a href="https://wikimediafoundation.org/wiki/Cookie_statement">Cookie statement</a></li>
            <li id="footer-places-mobileview"><a href="//en.m.wikipedia.org/w/index.php?title=Mozilla&amp;mobileaction=toggle_view_mobile" class="noprint stopMobileRedirectToggle">Mobile view</a></li>
        </ul>
        <ul id="footer-icons" class="noprint">
            <li id="footer-copyrightico">
                <a href="https://wikimediafoundation.org/"><img src="/static/images/wikimedia-button.png" srcset="/static/images/wikimedia-button-1.5x.png 1.5x, /static/images/wikimedia-button-2x.png 2x" width="88" height="31" alt="Wikimedia Foundation" /></a>
            </li>
            <li id="footer-poweredbyico">
                <a href="//www.mediawiki.org/"><img src="/static/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" srcset="/static/images/poweredby_mediawiki_132x47.png 1.5x, /static/images/poweredby_mediawiki_176x62.png 2x" width="88" height="31" /></a>
            </li>
        </ul>
        <div style="clear:both"></div>
    </div>
    <script>
        (window.RLQ = window.RLQ || []).push(function() {
            mw.loader.load(["ext.cite.a11y", "mediawiki.toc", "mediawiki.action.view.postEdit", "site", "mediawiki.user", "mediawiki.hidpi", "mediawiki.page.ready", "mediawiki.searchSuggest", "ext.gadget.teahouse", "ext.gadget.ReferenceTooltips", "ext.gadget.watchlist-notice", "ext.gadget.DRN-wizard", "ext.gadget.charinsert", "ext.gadget.refToolbar", "ext.gadget.extra-toolbar-buttons", "ext.gadget.switcher", "ext.gadget.featured-articles-links", "mmv.bootstrap.autostart", "ext.visualEditor.targetLoader", "ext.eventLogging.subscriber", "ext.wikimediaEvents", "ext.navigationTiming", "ext.uls.eventlogger", "ext.uls.init", "ext.centralNotice.geoIP", "ext.centralNotice.startUp"]);
        });
    </script>
    <script>
        (window.RLQ = window.RLQ || []).push(function() {
            mw.config.set({
                "wgPageParseReport": {
                    "limitreport": {
                        "cputime": "0.888",
                        "walltime": "0.991",
                        "ppvisitednodes": {
                            "value": 4683,
                            "limit": 1000000
                        },
                        "ppgeneratednodes": {
                            "value": 0,
                            "limit": 1500000
                        },
                        "postexpandincludesize": {
                            "value": 202526,
                            "limit": 2097152
                        },
                        "templateargumentsize": {
                            "value": 9662,
                            "limit": 2097152
                        },
                        "expansiondepth": {
                            "value": 20,
                            "limit": 40
                        },
                        "expensivefunctioncount": {
                            "value": 3,
                            "limit": 500
                        },
                        "entityaccesscount": {
                            "value": 1,
                            "limit": 400
                        },
                        "timingprofile": [
                            "100.00%  814.549      1 -total",
                            " 51.43%  418.949      1 Template:Reflist",
                            " 38.13%  310.586     67 Template:Cite_web",
                            "  9.60%   78.180      1 Template:Infobox_company",
                            "  7.70%   62.748      1 Template:Infobox",
                            "  7.34%   59.816      2 Template:Citation_needed",
                            "  6.67%   54.309      2 Template:Fix",
                            "  6.39%   52.081      1 Template:Mozilla",
                            "  6.05%   49.300      1 Template:Navbox_with_collapsible_groups",
                            "  4.15%   33.802     17 Template:Main_article"
                        ]
                    },
                    "scribunto": {
                        "limitreport-timeusage": {
                            "value": "0.419",
                            "limit": "10.000"
                        },
                        "limitreport-memusage": {
                            "value": 6399012,
                            "limit": 52428800
                        }
                    },
                    "cachereport": {
                        "origin": "mw1207",
                        "timestamp": "20161028065633",
                        "ttl": 2592000,
                        "transientcontent": false
                    }
                }
            });
        });
    </script>
    <script>
        (window.RLQ = window.RLQ || []).push(function() {
            mw.config.set({
                "wgBackendResponseTime": 63,
                "wgHostname": "mw1242"
            });
        });
    </script>
</body>

</html>