summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/translate/chrome_wikipedia_ORIGINAL.html
blob: b66a7beb3a4916735c16748627f9168058159fab (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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- saved from url=(0042)http://en.wikipedia.org/wiki/Google_Chrome -->
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr" class="win chrome chrome4 webkit webkit5"><HEAD><META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>Google Chrome - Wikipedia, the free encyclopedia</TITLE>

<META http-equiv="Content-Style-Type" content="text/css">
<META name="generator" content="MediaWiki 1.16alpha-wmf">
<LINK rel="alternate" type="application/x-wiki" title="Edit this page" href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit">
<LINK rel="edit" title="Edit this page" href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit">
<LINK rel="stylesheet" type="text/css" href="./chrome_wikipedia_ORIGINAL_files/combined.min.css">
<LINK rel="stylesheet" type="text/css" href="./chrome_wikipedia_ORIGINAL_files/jquery-ui-1.7.2.css">
<LINK rel="apple-touch-icon" href="http://en.wikipedia.org/apple-touch-icon.png">
<LINK rel="shortcut icon" href="http://en.wikipedia.org/favicon.ico">
<LINK rel="search" type="application/opensearchdescription+xml" href="http://en.wikipedia.org/w/opensearch_desc.php" title="Wikipedia (en)">
<LINK rel="copyright" href="http://creativecommons.org/licenses/by-sa/3.0/">
<LINK rel="alternate" type="application/rss+xml" title="Wikipedia RSS Feed" href="http://en.wikipedia.org/w/index.php?title=Special:RecentChanges&feed=rss">
<LINK rel="alternate" type="application/atom+xml" title="Wikipedia Atom Feed" href="http://en.wikipedia.org/w/index.php?title=Special:RecentChanges&feed=atom">
<LINK rel="stylesheet" href="./chrome_wikipedia_ORIGINAL_files/shared.css" type="text/css" media="screen">
<LINK rel="stylesheet" href="./chrome_wikipedia_ORIGINAL_files/commonPrint.css" type="text/css" media="print">
<LINK rel="stylesheet" href="./chrome_wikipedia_ORIGINAL_files/main.css" type="text/css" media="screen">
<LINK rel="stylesheet" href="./chrome_wikipedia_ORIGINAL_files/main(1).css" type="text/css" media="handheld">
<!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins-1.5/monobook/IE50Fixes.css?257z2" type="text/css" media="screen" /><![endif]-->
<!--[if IE 5.5000]><link rel="stylesheet" href="/skins-1.5/monobook/IE55Fixes.css?257z2" type="text/css" media="screen" /><![endif]-->
<!--[if IE 6]><link rel="stylesheet" href="/skins-1.5/monobook/IE60Fixes.css?257z2" type="text/css" media="screen" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" href="/skins-1.5/monobook/IE70Fixes.css?257z2" type="text/css" media="screen" /><![endif]-->
<LINK rel="stylesheet" href="./chrome_wikipedia_ORIGINAL_files/index.php" type="text/css" media="all">
<LINK rel="stylesheet" href="./chrome_wikipedia_ORIGINAL_files/index(1).php" type="text/css" media="print">
<LINK rel="stylesheet" href="./chrome_wikipedia_ORIGINAL_files/index(2).php" type="text/css" media="handheld">
<LINK rel="stylesheet" href="./chrome_wikipedia_ORIGINAL_files/index(3).php" type="text/css" media="all">
<LINK rel="stylesheet" href="./chrome_wikipedia_ORIGINAL_files/index(4).php" type="text/css" media="all">
<SCRIPT type="text/javascript">
var skin="monobook",
stylepath="/skins-1.5",
wgArticlePath="/wiki/$1",
wgScriptPath="/w",
wgScriptExtension=".php",
wgScript="/w/index.php",
wgVariantArticlePath=false,
wgActionPaths={},
wgServer="http://en.wikipedia.org",
wgCanonicalNamespace="",
wgCanonicalSpecialPageName=false,
wgNamespaceNumber=0,
wgPageName="Google_Chrome",
wgTitle="Google Chrome",
wgAction="view",
wgArticleId=19133401,
wgIsArticle=true,
wgUserName=null,
wgUserGroups=null,
wgUserLanguage="en",
wgContentLanguage="en",
wgBreakFrames=false,
wgCurRevisionId=331718437,
wgVersion="1.16alpha-wmf",
wgEnableAPI=true,
wgEnableWriteAPI=true,
wgSeparatorTransformTable=["", ""],
wgDigitTransformTable=["", ""],
wgMainPageTitle="Main Page",
wgFormattedNamespaces={"-2": "Media", "-1": "Special", "0": "", "1": "Talk", "2": "User", "3": "User talk", "4": "Wikipedia", "5": "Wikipedia talk", "6": "File", "7": "File talk", "8": "MediaWiki", "9": "MediaWiki talk", "10": "Template", "11": "Template talk", "12": "Help", "13": "Help talk", "14": "Category", "15": "Category talk", "100": "Portal", "101": "Portal talk"},
wgNamespaceIds={"media": -2, "special": -1, "": 0, "talk": 1, "user": 2, "user_talk": 3, "wikipedia": 4, "wikipedia_talk": 5, "file": 6, "file_talk": 7, "mediawiki": 8, "mediawiki_talk": 9, "template": 10, "template_talk": 11, "help": 12, "help_talk": 13, "category": 14, "category_talk": 15, "portal": 100, "portal_talk": 101, "wp": 4, "wt": 5, "image": 6, "image_talk": 7},
wgMWSuggestTemplate="http://en.wikipedia.org/w/api.php?action=opensearch\x26search={searchTerms}\x26namespace={namespaces}\x26suggest",
wgDBname="enwiki",
wgSearchNamespaces=[0],
wgMWSuggestMessages=["with suggestions", "no suggestions"],
wgRestrictionEdit=[],
wgRestrictionMove=[],
wgTrackingToken="5fd0d9217488cdd3e7979e979be441c8",
wgClickTrackingIsThrottled=true,
wgNotice="",
wgNoticeLocal="";
</SCRIPT>
<SCRIPT src="./chrome_wikipedia_ORIGINAL_files/wikibits.js" type="text/javascript"></SCRIPT>
<SCRIPT src="./chrome_wikipedia_ORIGINAL_files/ajax.js" type="text/javascript"></SCRIPT>
<SCRIPT src="./chrome_wikipedia_ORIGINAL_files/mwsuggest.js" type="text/javascript"></SCRIPT>
<SCRIPT type="text/javascript" src="./chrome_wikipedia_ORIGINAL_files/js2.combined.min.js"></SCRIPT>
<SCRIPT type="text/javascript" src="./chrome_wikipedia_ORIGINAL_files/plugins.combined.min.js"></SCRIPT>
<SCRIPT type="text/javascript" src="./chrome_wikipedia_ORIGINAL_files/CollapsibleTabs.js"></SCRIPT>
<SCRIPT type="text/javascript" src="./chrome_wikipedia_ORIGINAL_files/ClickTracking.js"></SCRIPT>
<SCRIPT type="text/javascript" src="./chrome_wikipedia_ORIGINAL_files/centralnotice.js"></SCRIPT><STYLE type="text/css">
#centralNotice .siteNoticeSmall{display:none;}
#centralNotice .siteNoticeSmallAnon{display:none;}
#centralNotice .siteNoticeSmallUser{display:none;}
#centralNotice.collapsed .siteNoticeBig{display:none;}
#centralNotice.collapsed .siteNoticeSmall{display:block;}
#centralNotice.collapsed .siteNoticeSmallUser{display:block;}
#centralNotice.collapsed .siteNoticeSmallAnon{display:block;}
#centralNotice.anonnotice .siteNoticeSmallUser{display:none !important;}
#centralNotice.usernotice .siteNoticeSmallAnon{display:none !important;}
</STYLE>


<!--[if lt IE 7]><script type="text/javascript" src="/skins-1.5/common/IEFixes.js?257z2"></script>
	<meta http-equiv="imagetoolbar" content="no" /><![endif]-->
<SCRIPT src="./chrome_wikipedia_ORIGINAL_files/index(5).php" type="text/javascript"></SCRIPT><SCRIPT src="./chrome_wikipedia_ORIGINAL_files/index(6).php" type="text/javascript"></SCRIPT>

<STYLE type="text/css">#bodyContent { position:relative; } 
.topicon { position:absolute; top:-2em !important;}
#coordinates{ position:absolute; top:1px !important; right:0px !important;}</STYLE></HEAD><BODY class="mediawiki ltr ns-0 ns-subject page-Google_Chrome skin-monobook">
	<DIV id="globalWrapper">
		<DIV id="column-content">
	<DIV id="content">
		<A id="top"></A>
		<DIV id="siteNotice"><SCRIPT type="text/javascript">if (wgNotice != '') document.writeln(wgNotice);</SCRIPT><DIV id="centralNotice" class="expanded anonnotice"><STYLE type="text/css">
/* Styles for Notices */
.notice-all a {
 text-decoration: none;
}
.notice-all a:hover span {
 text-decoration: underline;
}
div.notice-all div, div.notice-all span {
 margin: 0 !important;
}
.notice-pitch {
 display: inline-block;
 background-color: transparent;
}
.notice-pitch table {
 background-color: transparent;
}
.notice-pitch-block {
 float: left;
 padding: 1em;
}
.notice-pitch-text {
 overflow: visible;
 color: black;
 font-family: sans-serif;
 font-weight: bold;
 text-align: left;
 font-size: 2.25em;
 line-height: 1em;
 padding: 1em 1.5em 0.75em 0.75em !important;
 cursor: pointer;
}
.notice-pitch-donor {
 color: #333333;
}
.notice-pitch-donor-info {
 padding-right: 1em;
 font-size: 0.8em;
 white-space: nowrap;
}
.notice-slogan {
 color: #6E98C2;
 font-weight: bold;
 padding-right: 1em;
}
.siteNoticeBig {
 position: relative;
 float: left;
 width: 100%;
 border: solid 1px silver;
 background-color: #f3f3f3;
 margin-bottom: 1em;
 padding-top: 1em;
 padding-bottom: 1em;
}
 .siteNoticeBig .notice-toggle {
  position: absolute;
  top: 0em;
  right: 0.5em;
  font-size: 0.75em;
 }
 .siteNoticeBig .notice-button {
  float: left;
  height: 28px;
  text-align: center;
  background-color: transparent;
 }
 .siteNoticeBig .notice-button-start {
  float: left;
  background-image: url(http://upload.wikimedia.org/centralnotice/images/2009/button-glossy.png);
  background-position: left top;
  width: 12px;
  height: 28px;
 }
 .siteNoticeBig .notice-button-end {
  float: left;
  background-image: url(http://upload.wikimedia.org/centralnotice/images/2009/button-glossy.png);
  background-position: right bottom;
  width: 12px;
  height: 28px;
 }
 .siteNoticeBig .notice-button-label {
  float: left;
  background-image: url(http://upload.wikimedia.org/centralnotice/images/2009/button-glossy.png);
  background-position: center center;
  background-repeat: repeat-x;
  font-family: sans-serif;
  font-size: 1em;
  font-weight: bold;
  color: white;
  line-height: 28px;
  height: 28px;
  white-space: nowrap;
 }
.siteNoticeSmallAnon {
 position: relative;
 float: left;
 width: 100%;
 border: solid 1px silver;
 background-color: #f3f3f3;
 text-align: center;
 padding: 0.1em 0;
 margin-bottom: 1em;
}
 .siteNoticeSmallAnon .notice-toggle {
  float: right;
  font-size: 0.75em;
  padding-right: 0.5em;
 }
 .siteNoticeSmallAnon .notice-slogan {
  padding-left: 0.5em;
 }
.siteNoticeSmallUser {
 position: relative;
 float: left;
 width: 100%;
 text-align: center;
 margin-bottom: 1em;
}
 .siteNoticeSmallUser .notice-toggle {
  float: right;
  font-size: 0.75em;
 }
</STYLE>
<SCRIPT>
/* @param mode string to be appended to the utm_source paramter like "utm_source=[notice]_[mode]" */
function goToDonationPage( mode ) {
 var url = 'http://meta.wikimedia.org/wiki/Special:GeoLite?lang=en&&utm_medium=sitenotice&utm_campaign=fundraiser2009&utm_source=2009_Notice46';
 if ( mode && mode.length ) { 
  url += '_' + mode;
 }
 var targets = String( 'Support_Wikipedia2' ).split(',');
 if ( targets.length ) {
  url += '&target=' + targets[Math.floor( Math.random() * targets.length )].replace(/^\s+|\s+$/, '');
 }
 window.location = url;
}
</SCRIPT>
<DIV class="notice-all siteNoticeBig" align="center">
 <A class="notice-pitch" href="javascript:goToDonationPage()" onclick="goToDonationPage()">
  <TABLE class="notice-pitch-block" cellpadding="0" cellspacing="0" border="0">
   <TBODY><TR>
    <TD class="notice-pitch-text">
     <SPAN>“I am in. Are you?”</SPAN>
    </TD>
    <TD class="notice-pitch-donor" align="left">
     <TABLE cellpadding="0" cellspacing="0" border="0">
      <TBODY><TR>
       <TD class="notice-pitch-donor-info">Donor:</TD>
       <TD class="notice-pitch-donor-info">Peter Chang</TD>
      </TR>
      <TR>
       <TD class="notice-pitch-donor-info">Date:</TD>
       <TD class="notice-pitch-donor-info">December 10, 2009</TD>
      </TR>
      <TR>
       <TD class="notice-pitch-donor-info">Amount:</TD>
       <TD class="notice-pitch-donor-info">USD 35.00</TD>
      </TR>
      <TR>
       <TD colspan="2" style="padding-top:0.5em;">
        <DIV class="notice-button">
         <DIV class="notice-button-start"></DIV>
         <DIV class="notice-button-label">Donate Now</DIV>
         <DIV class="notice-button-end"></DIV>
        </DIV>
        <DIV style="clear:both"></DIV>
       </TD>
      </TR>
     </TBODY></TABLE>
    </TD>
   </TR>
  </TBODY></TABLE>
  <DIV style="clear:both"></DIV>
 </A>
 <DIV class="notice-toggle">[<A href="http://en.wikipedia.org/wiki/Google_Chrome#" onclick="toggleNotice();return false"><SPAN>Hide</SPAN></A>]</DIV>
 <DIV style="clear:both"></DIV>
</DIV>
<DIV class="notice-all siteNoticeSmallAnon">
 <DIV class="notice-toggle">[<A href="http://en.wikipedia.org/wiki/Google_Chrome#" onclick="toggleNotice()"><SPAN>Show</SPAN></A>]</DIV>
 <A class="notice-slogan" href="javascript:goToDonationPage('collapsed')">
   <SPAN>Wikipedia</SPAN>
   <IMG src="./chrome_wikipedia_ORIGINAL_files/Wikipedia-logo-small_(Fundraising_2009).png" alt="">
   <SPAN>Forever</SPAN>
 </A>
 <SPAN>Our shared knowledge. Our shared treasure.</SPAN>
 <A href="javascript:goToDonationPage('collapsed')">
  <SPAN>Help us protect it.</SPAN>
 </A>
 <DIV style="clear:both"></DIV>
</DIV>
<DIV class="notice-all siteNoticeSmallUser">
 <DIV class="notice-toggle">[<A href="http://en.wikipedia.org/wiki/Google_Chrome#" onclick="toggleNotice()"><SPAN>Show</SPAN></A>]</DIV>
 <A class="notice-slogan" href="javascript:goToDonationPage('collapsed')">
  <SPAN>Wikipedia</SPAN>
  <IMG src="./chrome_wikipedia_ORIGINAL_files/Wikipedia-logo-small_(Fundraising_2009).png" alt="">
  <SPAN>Forever</SPAN>
 </A>
 <SPAN>Our shared knowledge. Our shared treasure.</SPAN>
 <A href="javascript:goToDonationPage('collapsed')">
  <SPAN>Help us protect it.</SPAN>
 </A>
 <DIV style="clear:both"></DIV>
</DIV>
<DIV style="clear:both"></DIV></DIV>
</DIV>		<H1 id="firstHeading" class="firstHeading">Google Chrome</H1>
		<DIV id="bodyContent">
			<H3 id="siteSub">From Wikipedia, the free encyclopedia</H3>
			<DIV id="contentSub"></DIV>
									<DIV id="jump-to-nav">Jump to: <A href="http://en.wikipedia.org/wiki/Google_Chrome#column-one">navigation</A>, <A href="http://en.wikipedia.org/wiki/Google_Chrome#searchInput">search</A></DIV>			<!-- start content -->
			<DIV class="dablink">This article is about the web browser.  For the operating system, see <A href="http://en.wikipedia.org/wiki/Google_Chrome_OS" title="Google Chrome OS">Google Chrome OS</A>.</DIV>
<TABLE class="infobox vevent" cellspacing="5" style="width:22em; text-align:left; font-size:88%; line-height:1.5em;">
<CAPTION class="summary" style="font-size:125%; font-weight:bold;">Google Chrome</CAPTION>
<TBODY><TR>
<TH colspan="2" style="text-align:center; text-align:center; font-size:125%; font-weight:bold;"><A href="http://en.wikipedia.org/wiki/File:GoogleChromeLogo.png" class="image" title="Google Chrome Icon"><IMG alt="Google Chrome Icon" src="./chrome_wikipedia_ORIGINAL_files/64px-GoogleChromeLogo.png" width="64" height="64"></A></TH>
</TR>
<TR class="">
<TD colspan="2" class="" style="text-align:center;"><A href="http://en.wikipedia.org/wiki/File:Chrome_3.0.195.25_Wikipedia.PNG" class="image" title="Google Chrome Screenshot"><IMG alt="Google Chrome Screenshot" src="./chrome_wikipedia_ORIGINAL_files/300px-Chrome_3.0.195.25_Wikipedia.PNG" width="300" height="240"></A><BR>
<SPAN style="">Google Chrome 3.0 displaying <A href="http://en.wikipedia.org/wiki/Wikipedia" title="Wikipedia">Wikipedia</A> on <A href="http://en.wikipedia.org/wiki/Windows_7" title="Windows 7">Windows 7</A></SPAN></TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Software_developer" title="Software developer">Developer(s)</A></TH>
<TD class="" style=""><A href="http://en.wikipedia.org/wiki/Google" title="Google">Google</A> Inc.</TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap">Initial release</TH>
<TD class="" style="">September 2, 2008<SPAN style="display:none">&nbsp;(<SPAN class="bday dtstart updated">2008-09-02</SPAN>)</SPAN></TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Software_release_life_cycle" title="Software release life cycle">Stable release</A></TH>
<TD class="" style=""><SPAN class="plainlinks"><A href="http://en.wikipedia.org/w/index.php?title=Template:Latest_stable_software_release/Google_Chrome&action=edit" class="external text" rel="nofollow">3.0.195.38 (browser), 4.0.245.1 (chrome frame)</A></SPAN> &nbsp;<SMALL>(<SPAN class="bday">2009-12-14</SPAN><SPAN class="noprint">; 26 hours ago</SPAN>)</SMALL> <SUB class="plainlinks">[<A href="http://en.wikipedia.org/w/index.php?title=Template:Latest_stable_software_release/Google_Chrome&action=edit&preload=Template:LSR/syntax" class="external text" rel="nofollow">+/−</A>]</SUB></TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Software_release_life_cycle" title="Software release life cycle">Preview release</A></TH>
<TD class="" style=""><SPAN class="plainlinks"><A href="http://en.wikipedia.org/w/index.php?title=Template:Latest_preview_software_release/Google_Chrome&action=edit" class="external text" rel="nofollow">4.0.249.30 (Windows, Mac, &amp; Linux Beta), 4.0.266.0 (Windows &amp; Linux Dev channel)</A></SPAN> &nbsp;<SMALL>(<SPAN class="bday">2009-12-11</SPAN><SPAN class="noprint">; 4 days ago</SPAN>)</SMALL> <SUB class="plainlinks">[<A href="http://en.wikipedia.org/w/index.php?title=Template:Latest_preview_software_release/Google_Chrome&action=edit&preload=Template:LSR/syntax" class="external text" rel="nofollow">+/−</A>]</SUB></TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Programming_language" title="Programming language">Written in</A></TH>
<TD class="" style=""><A href="http://en.wikipedia.org/wiki/C%2B%2B" title="C++">C++</A>, <A href="http://en.wikipedia.org/wiki/Assembly_language" title="Assembly language">Assembly</A></TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Operating_system" title="Operating system">Operating system</A></TH>
<TD class="" style=""><A href="http://en.wikipedia.org/wiki/Windows" title="Windows" class="mw-redirect">Windows</A> (<A href="http://en.wikipedia.org/wiki/Windows_XP_SP2" title="Windows XP SP2" class="mw-redirect">XP SP2</A> and later)<BR>
<A href="http://en.wikipedia.org/wiki/Mac_OS_X" title="Mac OS X">Mac OS X</A> (10.5 and later)<BR>
<A href="http://en.wikipedia.org/wiki/Linux" title="Linux">Linux</A></TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Software_engine" title="Software engine">Engine</A></TH>
<TD class="" style=""><A href="http://en.wikipedia.org/wiki/WebKit" title="WebKit">WebKit</A> (Based on <A href="http://en.wikipedia.org/wiki/KHTML" title="KHTML">KHTML</A>)</TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/File_size" title="File size">Size</A></TH>
<TD class="" style="">10.5 <A href="http://en.wikipedia.org/wiki/Megabytes" title="Megabytes" class="mw-redirect">MB</A> (Windows)</TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Language" title="Language">Available in</A></TH>
<TD class="" style="">50 languages</TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap">Development status</TH>
<TD class="" style="">Active</TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/List_of_software_categories" title="List of software categories">Type</A></TH>
<TD class="" style=""><A href="http://en.wikipedia.org/wiki/Web_browser" title="Web browser">Web browser</A></TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Software_license" title="Software license">License</A></TH>
<TD class="" style=""><A href="http://www.google.com/chrome/intl/en/eula_text.html" class="external text" rel="nofollow">Google Chrome Terms of Service</A> (Google Chrome executable),<BR>
<A href="http://en.wikipedia.org/wiki/BSD_license" title="BSD license" class="mw-redirect">BSD</A> (source code and Chromium executable)</TD>
</TR>
<TR class="">
<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Website" title="Website">Website</A></TH>
<TD class="" style=""><A href="http://www.google.com/chrome/" class="external text" rel="nofollow">www.google.com/chrome</A> <A href="http://code.google.com/chromium/" class="external text" rel="nofollow">code.google.com/chromium/</A> <A href="http://dev.chromium.org/" class="external text" rel="nofollow">dev.chromium.org/</A></TD>
</TR>
</TBODY></TABLE>
<P><B>Google Chrome</B> is a <A href="http://en.wikipedia.org/wiki/Web_browser" title="Web browser">web browser</A> released by <A href="http://en.wikipedia.org/wiki/Google" title="Google">Google</A> which uses the <A href="http://en.wikipedia.org/wiki/WebKit" title="WebKit">WebKit</A> <A href="http://en.wikipedia.org/wiki/Layout_engine" title="Layout engine">layout engine</A> and <A href="http://en.wikipedia.org/wiki/Application_framework" title="Application framework">application framework</A>. It was first released as a <A href="http://en.wikipedia.org/wiki/Beta_version" title="Beta version" class="mw-redirect">beta version</A> for <A href="http://en.wikipedia.org/wiki/Microsoft_Windows" title="Microsoft Windows">Microsoft Windows</A> on 2 September 2008, and the public stable release was on 11 December 2008. The name is derived from the <A href="http://en.wikipedia.org/wiki/Graphical_user_interface" title="Graphical user interface">graphical user interface</A> frame, or "chrome", of web browsers. As of 1 December 2009<SPAN style="display:none">&nbsp;(<SPAN class="bday dtstart updated">2009 -12-01</SPAN>)</SPAN><SUP class="plainlinks noprint asof-tag update" style="display:none;"><A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit" class="external text" rel="nofollow">[update]</A></SUP>, Chrome was the fourth most widely used browser, with 3.9% of worldwide <A href="http://en.wikipedia.org/wiki/Usage_share_of_web_browsers" title="Usage share of web browsers">usage share of web browsers</A>.<SUP id="cite_ref-Browser_Market_Share_0-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-Browser_Market_Share-0"><SPAN>[</SPAN>1<SPAN>]</SPAN></A></SUP> Beta versions of Chrome for <A href="http://en.wikipedia.org/wiki/Linux" title="Linux">Linux</A>, <A href="http://en.wikipedia.org/wiki/Mac_OS_X" title="Mac OS X">Mac OS X</A> and Chrome extensions were released on 8 December 2009<SUP id="cite_ref-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-1"><SPAN>[</SPAN>2<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-2" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-2"><SPAN>[</SPAN>3<SPAN>]</SPAN></A></SUP>.</P>
<P>In September 2008, Google released the entire source code of Chrome, including its <A href="http://en.wikipedia.org/wiki/V8_(JavaScript_engine)" title="V8 (JavaScript engine)">V8 JavaScript engine</A>, as an <A href="http://en.wikipedia.org/wiki/Open_source" title="Open source">open source</A> project entitled <A href="http://en.wikipedia.org/wiki/Chromium_(web_browser)" title="Chromium (web browser)">Chromium</A>.<SUP id="cite_ref-3" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-3"><SPAN>[</SPAN>4<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-4" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-4"><SPAN>[</SPAN>5<SPAN>]</SPAN></A></SUP> This move enabled third-party developers to study the underlying source code and help port the browser to Mac OS X and Linux. A Google spokesperson also expressed hope that other browsers would adopt V8 to help web applications.<SUP id="cite_ref-5" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-5"><SPAN>[</SPAN>6<SPAN>]</SPAN></A></SUP> The Google-authored portion of Chromium is released under the permissive <A href="http://en.wikipedia.org/wiki/BSD_license" title="BSD license" class="mw-redirect">BSD license</A>,<SUP id="cite_ref-6" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-6"><SPAN>[</SPAN>7<SPAN>]</SPAN></A></SUP> which allows portions to be incorporated into both open source and proprietary software programs.<SUP id="cite_ref-7" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-7"><SPAN>[</SPAN>8<SPAN>]</SPAN></A></SUP> Other portions of the source code are subject to a variety of open-source licenses.<SUP id="cite_ref-8" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-8"><SPAN>[</SPAN>9<SPAN>]</SPAN></A></SUP> Chromium implements the same feature set as Chrome, but without Google branding and automatic updates, and it has a slightly different logo.<SUP id="cite_ref-9" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-9"><SPAN>[</SPAN>10<SPAN>]</SPAN></A></SUP></P>
<TABLE id="toc" class="toc">
<TBODY><TR>
<TD>
<DIV id="toctitle">
<H2>Contents</H2>
 <SPAN class="toctoggle">[<A id="togglelink" class="internal" href="javascript:toggleToc()">hide</A>]</SPAN></DIV>
<UL>
<LI class="toclevel-1 tocsection-1"><A href="http://en.wikipedia.org/wiki/Google_Chrome#History"><SPAN class="tocnumber">1</SPAN> <SPAN class="toctext">History</SPAN></A>
<UL>
<LI class="toclevel-2 tocsection-2"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Announcement"><SPAN class="tocnumber">1.1</SPAN> <SPAN class="toctext">Announcement</SPAN></A></LI>
<LI class="toclevel-2 tocsection-3"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Public_release"><SPAN class="tocnumber">1.2</SPAN> <SPAN class="toctext">Public release</SPAN></A></LI>
<LI class="toclevel-2 tocsection-4"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Development"><SPAN class="tocnumber">1.3</SPAN> <SPAN class="toctext">Development</SPAN></A></LI>
<LI class="toclevel-2 tocsection-5"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Release_history"><SPAN class="tocnumber">1.4</SPAN> <SPAN class="toctext">Release history</SPAN></A></LI>
</UL>
</LI>
<LI class="toclevel-1 tocsection-6"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Features"><SPAN class="tocnumber">2</SPAN> <SPAN class="toctext">Features</SPAN></A>
<UL>
<LI class="toclevel-2 tocsection-7"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Security"><SPAN class="tocnumber">2.1</SPAN> <SPAN class="toctext">Security</SPAN></A></LI>
<LI class="toclevel-2 tocsection-8"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Speed"><SPAN class="tocnumber">2.2</SPAN> <SPAN class="toctext">Speed</SPAN></A></LI>
<LI class="toclevel-2 tocsection-9"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Stability"><SPAN class="tocnumber">2.3</SPAN> <SPAN class="toctext">Stability</SPAN></A></LI>
<LI class="toclevel-2 tocsection-10"><A href="http://en.wikipedia.org/wiki/Google_Chrome#User_interface"><SPAN class="tocnumber">2.4</SPAN> <SPAN class="toctext">User interface</SPAN></A></LI>
<LI class="toclevel-2 tocsection-11"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Extensions"><SPAN class="tocnumber">2.5</SPAN> <SPAN class="toctext">Extensions</SPAN></A></LI>
<LI class="toclevel-2 tocsection-12"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Themes"><SPAN class="tocnumber">2.6</SPAN> <SPAN class="toctext">Themes</SPAN></A></LI>
<LI class="toclevel-2 tocsection-13"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Usage_tracking"><SPAN class="tocnumber">2.7</SPAN> <SPAN class="toctext">Usage tracking</SPAN></A></LI>
<LI class="toclevel-2 tocsection-14"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Release_channels_and_updates"><SPAN class="tocnumber">2.8</SPAN> <SPAN class="toctext">Release channels and updates</SPAN></A></LI>
</UL>
</LI>
<LI class="toclevel-1 tocsection-15"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Reception"><SPAN class="tocnumber">3</SPAN> <SPAN class="toctext">Reception</SPAN></A>
<UL>
<LI class="toclevel-2 tocsection-16"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Reverse-engineering_issues_with_Windows"><SPAN class="tocnumber">3.1</SPAN> <SPAN class="toctext">Reverse-engineering issues with Windows</SPAN></A></LI>
</UL>
</LI>
<LI class="toclevel-1 tocsection-17"><A href="http://en.wikipedia.org/wiki/Google_Chrome#See_also"><SPAN class="tocnumber">4</SPAN> <SPAN class="toctext">See also</SPAN></A></LI>
<LI class="toclevel-1 tocsection-18"><A href="http://en.wikipedia.org/wiki/Google_Chrome#References"><SPAN class="tocnumber">5</SPAN> <SPAN class="toctext">References</SPAN></A></LI>
<LI class="toclevel-1 tocsection-19"><A href="http://en.wikipedia.org/wiki/Google_Chrome#External_links"><SPAN class="tocnumber">6</SPAN> <SPAN class="toctext">External links</SPAN></A></LI>
</UL>
</TD>
</TR>
</TBODY></TABLE>
<SCRIPT type="text/javascript">
//<![CDATA[
if (window.showTocToggle) { var tocShowText = "show"; var tocHideText = "hide"; showTocToggle(); } 
//]]>
</SCRIPT>
<H2><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=1" title="Edit section: History">edit</A>]</SPAN> <SPAN class="mw-headline" id="History">History</SPAN></H2>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=2" title="Edit section: Announcement">edit</A>]</SPAN> <SPAN class="mw-headline" id="Announcement">Announcement</SPAN></H3>
<P>The release announcement was originally scheduled for 3 September 2008, and a comic by <A href="http://en.wikipedia.org/wiki/Scott_McCloud" title="Scott McCloud">Scott McCloud</A> was to be sent to journalists and bloggers explaining the features of and motivations for the new browser.<SUP id="cite_ref-mccloud_10-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-mccloud-10"><SPAN>[</SPAN>11<SPAN>]</SPAN></A></SUP> Copies intended for <A href="http://en.wikipedia.org/wiki/Europe" title="Europe">Europe</A> were shipped early and <A href="http://en.wikipedia.org/wiki/Germany" title="Germany">German</A> blogger Philipp Lenssen of <A href="http://en.wikipedia.org/wiki/Google_Blogoscoped" title="Google Blogoscoped">Google Blogoscoped</A><SUP id="cite_ref-lenssen_11-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-lenssen-11"><SPAN>[</SPAN>12<SPAN>]</SPAN></A></SUP> made a scanned copy of the 38-page comic available on his website after receiving it on 1 September 2008.<SUP id="cite_ref-comic_12-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-comic-12"><SPAN>[</SPAN>13<SPAN>]</SPAN></A></SUP> Google subsequently made the comic available on <A href="http://en.wikipedia.org/wiki/Google_Books" title="Google Books" class="mw-redirect">Google Books</A><SUP id="cite_ref-chrome-comic_13-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP> and mentioned it on their official blog along with an explanation for the early release.<SUP id="cite_ref-releasedate_14-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-releasedate-14"><SPAN>[</SPAN>15<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=3" title="Edit section: Public release">edit</A>]</SPAN> <SPAN class="mw-headline" id="Public_release">Public release</SPAN></H3>
<DIV class="thumb tright">
<DIV class="thumbinner" style="width:202px;"><A href="http://en.wikipedia.org/wiki/File:File-Chromium-Linux-Alpha.png" class="image"><IMG alt="" src="./chrome_wikipedia_ORIGINAL_files/200px-File-Chromium-Linux-Alpha.png" width="200" height="166" class="thumbimage"></A>
<DIV class="thumbcaption">
<DIV class="magnify"><A href="http://en.wikipedia.org/wiki/File:File-Chromium-Linux-Alpha.png" class="internal" title="Enlarge"><IMG src="./chrome_wikipedia_ORIGINAL_files/magnify-clip.png" width="15" height="11" alt=""></A></DIV>
An alpha version of Chromium for Linux, showing the default home page</DIV>
</DIV>
</DIV>
<P>The browser was first publicly released for Microsoft Windows (XP and later only) on 2 September 2008 in 43 languages, officially a beta version.<SUP id="cite_ref-15" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-15"><SPAN>[</SPAN>16<SPAN>]</SPAN></A></SUP> Chrome quickly gained about 1% market share despite Mac OS X and Linux versions still being under development.<SUP id="cite_ref-releasedate_14-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-releasedate-14"><SPAN>[</SPAN>15<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-cnet_16-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-cnet-16"><SPAN>[</SPAN>17<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-CBC_17-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-CBC-17"><SPAN>[</SPAN>18<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-18" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-18"><SPAN>[</SPAN>19<SPAN>]</SPAN></A></SUP> After the initial surge, usage share dropped until it hit a low of 0.69% in October 2008. It then started rising again until by December 2008, Chrome again passed the 1% threshold.<SUP id="cite_ref-19" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-19"><SPAN>[</SPAN>20<SPAN>]</SPAN></A></SUP></P>
<P>In late 2008, a message saying that a "test shell" is available to build on Linux was placed in the Chromium project's developer wiki.<SUP id="cite_ref-20" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-20"><SPAN>[</SPAN>21<SPAN>]</SPAN></A></SUP> Some tried this shell, which apparently lacked many features, but appeared to function quite well in rendering web sites (including JavaScript).<SUP id="cite_ref-21" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-21"><SPAN>[</SPAN>22<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-22" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-22"><SPAN>[</SPAN>23<SPAN>]</SPAN></A></SUP> In early January 2009, <A href="http://en.wikipedia.org/wiki/CNET" title="CNET" class="mw-redirect">CNET</A> reported that Google planned to release versions for Mac OS X and Linux in the first half of the year.<SUP id="cite_ref-ChromeMacDeadline_23-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-ChromeMacDeadline-23"><SPAN>[</SPAN>24<SPAN>]</SPAN></A></SUP> By March 2009, it was possible to build a pre-alpha version of the Chromium browser, which looked similar to the Windows release, but was still very far from complete.<SUP id="cite_ref-24" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-24"><SPAN>[</SPAN>25<SPAN>]</SPAN></A></SUP></P>
<P>The first official Chrome Mac OS X and Linux developer previews<SUP id="cite_ref-25" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-25"><SPAN>[</SPAN>26<SPAN>]</SPAN></A></SUP> were announced on 4 June 2009 with a blog post<SUP id="cite_ref-26" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-26"><SPAN>[</SPAN>27<SPAN>]</SPAN></A></SUP> saying they were missing many features and were intended for early feedback rather than general use. On 9 October 2009, Google CEO Eric Schmidt stated that Chrome for Mac would be released "in a couple of months."<SUP id="cite_ref-27" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-27"><SPAN>[</SPAN>28<SPAN>]</SPAN></A></SUP> On 30 November 2009, it was reported that the Mac OS X beta would be available by the end of 2009, lacking such features as App Mode, a bookmark manager, 64-bit support, Bookmark Sync, and extensions.<SUP id="cite_ref-28" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-28"><SPAN>[</SPAN>29<SPAN>]</SPAN></A></SUP> Official betas for Mac OS X and Linux were released on 8 December 2009.<SUP id="cite_ref-29" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-29"><SPAN>[</SPAN>30<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=4" title="Edit section: Development">edit</A>]</SPAN> <SPAN class="mw-headline" id="Development">Development</SPAN></H3>
<P>Chrome was assembled from 25 different code libraries from Google and third parties such as <A href="http://en.wikipedia.org/wiki/Netscape_(web_browser)" title="Netscape (web browser)">Netscape</A>.<SUP id="cite_ref-30" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-30"><SPAN>[</SPAN>31<SPAN>]</SPAN></A></SUP> The <A href="http://en.wikipedia.org/wiki/JavaScript" title="JavaScript">JavaScript</A> <A href="http://en.wikipedia.org/wiki/Virtual_machine" title="Virtual machine">virtual machine</A> was considered a sufficiently important project to be split off (as was <A href="http://en.wikipedia.org/wiki/Adobe_Systems" title="Adobe Systems">Adobe</A>/<A href="http://en.wikipedia.org/wiki/Mozilla" title="Mozilla">Mozilla</A>'s <A href="http://en.wikipedia.org/wiki/Tamarin_(JavaScript_engine)" title="Tamarin (JavaScript engine)">Tamarin</A>) and handled by a separate team in <A href="http://en.wikipedia.org/wiki/Denmark" title="Denmark">Denmark</A> coordinated by <A href="http://en.wikipedia.org/wiki/Lars_Bak_(computer_programmer)" title="Lars Bak (computer programmer)">Lars Bak</A> at <A href="http://en.wikipedia.org/wiki/Aarhus" title="Aarhus">Aarhus</A>. According to Google, existing implementations were designed "for small programs, where the performance and interactivity of the system weren't that important," but <A href="http://en.wikipedia.org/wiki/Web_application" title="Web application">web applications</A> such as <A href="http://en.wikipedia.org/wiki/Gmail" title="Gmail">Gmail</A> "are using the web browser to the fullest when it comes to <A href="http://en.wikipedia.org/wiki/Document_Object_Model" title="Document Object Model">DOM</A> manipulations and <A href="http://en.wikipedia.org/wiki/Javascript" title="Javascript" class="mw-redirect">Javascript</A>", and therefore would significantly benefit from a JavaScript engine that could work faster.</P>
<P>Chrome uses the <A href="http://en.wikipedia.org/wiki/WebKit" title="WebKit">WebKit</A> rendering engine to display web pages, on advice from the <A href="http://en.wikipedia.org/wiki/Android_(mobile_device_platform)" title="Android (mobile device platform)" class="mw-redirect">Android</A> team.<SUP id="cite_ref-chrome-comic_13-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP> Like most browsers, Chrome was extensively tested internally before release with <A href="http://en.wikipedia.org/wiki/Unit_testing" title="Unit testing">unit testing</A>, "automated user interface testing of scripted user actions" and <A href="http://en.wikipedia.org/wiki/Fuzz_testing" title="Fuzz testing">fuzz testing</A>, as well as WebKit's layout tests (99% of which Chrome is claimed to have passed). New browser builds are automatically tested against tens of thousands of commonly accessed websites inside of the Google index within 2030 minutes.<SUP id="cite_ref-chrome-comic_13-2" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP></P>
<P>Chrome includes <A href="http://en.wikipedia.org/wiki/Gears_(software)" title="Gears (software)">Gears</A>, which adds features for <A href="http://en.wikipedia.org/wiki/Web_developer" title="Web developer">web developers</A> typically relating to the building of web applications (including offline support).<SUP id="cite_ref-chrome-comic_13-3" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP></P>
<DIV class="thumb tright">
<DIV class="thumbinner" style="width:302px;"><A href="http://en.wikipedia.org/wiki/File:Chrome_3.0.195.25_acid3.PNG" class="image"><IMG alt="" src="./chrome_wikipedia_ORIGINAL_files/300px-Chrome_3.0.195.25_acid3.PNG" width="300" height="202" class="thumbimage"></A>
<DIV class="thumbcaption">
<DIV class="magnify"><A href="http://en.wikipedia.org/wiki/File:Chrome_3.0.195.25_acid3.PNG" class="internal" title="Enlarge"><IMG src="./chrome_wikipedia_ORIGINAL_files/magnify-clip.png" width="15" height="11" alt=""></A></DIV>
The results of the <A href="http://en.wikipedia.org/wiki/Acid3" title="Acid3">Acid3</A> test on Google Chrome 3.0</DIV>
</DIV>
</DIV>
<P>The first release of Google Chrome passed the <A href="http://en.wikipedia.org/wiki/Acid1" title="Acid1">Acid1</A> and <A href="http://en.wikipedia.org/wiki/Acid2" title="Acid2">Acid2</A> tests, but not <A href="http://en.wikipedia.org/wiki/Acid3" title="Acid3">Acid3</A>. On Acid3 it scored 79 out of the 100 subtests, higher than contemporary versions of <A href="http://en.wikipedia.org/wiki/Internet_Explorer_7" title="Internet Explorer 7">Internet Explorer 7</A> (14/100), <A href="http://en.wikipedia.org/wiki/Firefox_3" title="Firefox 3" class="mw-redirect">Firefox 3</A> (71/100), and <A href="http://en.wikipedia.org/wiki/Safari_(browser)" title="Safari (browser)" class="mw-redirect">Safari 3</A> (75/100); but lower than <A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">Opera 9</A> (83/100).<SUP id="cite_ref-acid_31-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-acid-31"><SPAN>[</SPAN>32<SPAN>]</SPAN></A></SUP> When compared with contemporary development builds of Firefox, Internet Explorer, Opera, and Safari, Chrome scored lower than Firefox 3.1 Beta 1 (85/100), Opera (100/100), and Safari 4 (100/100),<SUP id="cite_ref-acid_31-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-acid-31"><SPAN>[</SPAN>32<SPAN>]</SPAN></A></SUP> but still higher than Internet Explorer (21/100).<SUP id="cite_ref-32" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-32"><SPAN>[</SPAN>33<SPAN>]</SPAN></A></SUP> However, version 2.0 of Google Chrome passed all 100 subtests (but still failed the link test).<SUP class="noprint Template-Fact" title="This claim needs references to reliable sources from September 2009" style="white-space:nowrap;">[<I><A href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed">citation needed</A></I>]</SUP> The current stable version (3.0) scores 100/100 but shows a 'X' in the upper right corner because downloadable fonts are disabled until security concerns surrounding them can be resolved.<SUP id="cite_ref-33" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-33"><SPAN>[</SPAN>34<SPAN>]</SPAN></A></SUP> Development builds of Google Chrome starting with version 4.0.249.4 and higher pass all aspects of the Acid 3 test, including the link test and downloadable fonts.<SUP id="cite_ref-34" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-34"><SPAN>[</SPAN>35<SPAN>]</SPAN></A></SUP></P>
<P>On 7 July 2009, Google announced plans for a <A href="http://en.wikipedia.org/wiki/Google_Chrome_OS" title="Google Chrome OS">Google Chrome OS</A> based on the Chrome browser and <A href="http://en.wikipedia.org/wiki/Linux" title="Linux">Linux</A>.<SUP id="cite_ref-35" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-35"><SPAN>[</SPAN>36<SPAN>]</SPAN></A></SUP></P>
<P>Google released Chrome 2.0 on 21 May 2009, citing increased speed and stability. New features included form autofill, an improved <I>New Tab Page</I>, and full screen mode.<SUP id="cite_ref-chrome.blogspot.com_36-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome.blogspot.com-36"><SPAN>[</SPAN>37<SPAN>]</SPAN></A></SUP></P>
<P>Version 3.0 was released on 15 September 2009, bringing with it a 25% speed improvement, <A href="http://en.wikipedia.org/wiki/HTML5" title="HTML5">HTML5</A> capabilities (such as <CODE>&lt;video&gt;</CODE> and <CODE>&lt;audio&gt;</CODE> elements with native support for <A href="http://en.wikipedia.org/wiki/Ogg" title="Ogg">Ogg</A> <A href="http://en.wikipedia.org/wiki/Theora" title="Theora">Theora</A> video, <A href="http://en.wikipedia.org/wiki/Ogg_Vorbis" title="Ogg Vorbis" class="mw-redirect">Ogg Vorbis</A> audio, <A href="http://en.wikipedia.org/wiki/H.264" title="H.264" class="mw-redirect">H.264</A> video, <A href="http://en.wikipedia.org/wiki/Advanced_Audio_Coding" title="Advanced Audio Coding">AAC</A> and <A href="http://en.wikipedia.org/wiki/MP3" title="MP3">MP3</A> audio), an improved <I>Omnibox</I>, theme support, and a redesigned <I>New Tab Page</I>.<SUP id="cite_ref-37" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-37"><SPAN>[</SPAN>38<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-chrome3_38-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome3-38"><SPAN>[</SPAN>39<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-chrome3-video-cnet_39-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome3-video-cnet-39"><SPAN>[</SPAN>40<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-chrome3-audio-element_40-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome3-audio-element-40"><SPAN>[</SPAN>41<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-chrome3-features_41-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome3-features-41"><SPAN>[</SPAN>42<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=5" title="Edit section: Release history">edit</A>]</SPAN> <SPAN class="mw-headline" id="Release_history">Release history</SPAN></H3>
<TABLE class="wikitable">
<TBODY><TR>
<TH>Color</TH>
<TH>Meaning</TH>
</TR>
<TR>
<TD style="background-color:#fa8072;">Red</TD>
<TD>Old release</TD>
</TR>
<TR>
<TD style="background-color:#A0E75A;">Green</TD>
<TD>Current stable release</TD>
</TR>
<TR>
<TD style="background-color:#D6B4F1;">Purple</TD>
<TD>Current test release</TD>
</TR>
</TBODY></TABLE>
<TABLE class="wikitable">
<TBODY><TR>
<TH>Major version</TH>
<TH>Release date</TH>
<TH><A href="http://en.wikipedia.org/wiki/WebKit" title="WebKit">WebKit</A><SUP id="cite_ref-42" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-42"><SPAN>[</SPAN>43<SPAN>]</SPAN></A></SUP>/<BR>
<A href="http://en.wikipedia.org/wiki/V8_JavaScript_engine" title="V8 JavaScript engine" class="mw-redirect">V8</A><SUP id="cite_ref-43" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-43"><SPAN>[</SPAN>44<SPAN>]</SPAN></A></SUP>engine version</TH>
<TH>Operating system support</TH>
<TH>Significant changes</TH>
</TR>
<TR>
<TD style="white-space: nowrap;background-color:#fa8072;">0.2</TD>
<TD style="white-space: nowrap;" width="100px">2008-09-08</TD>
<TD align="center" width="110px">522<BR>
0.3</TD>
<TD align="center" width="65px" rowspan="6">Windows</TD>
<TD>First release</TD>
</TR>
<TR>
<TD style="white-space: nowrap;background-color:#fa8072;">0.3</TD>
<TD style="white-space: nowrap;">2008-10-29</TD>
<TD align="center">522<BR>
0.3</TD>
<TD>Improved plugin performance and reliability. Spell checking for input fields. Improved web proxy performance and reliability. Tab and window management updates.</TD>
</TR>
<TR>
<TD style="white-space: nowrap;background-color:#fa8072;">0.4</TD>
<TD style="white-space: nowrap;">2008-11-24</TD>
<TD align="center">525<BR>
0.3</TD>
<TD>Bookmark manager with import and export support. Privacy section added to the application options. New blocked popup notification. Security fixes.</TD>
</TR>
<TR>
<TD style="white-space: nowrap;background-color:#fa8072;">1.0</TD>
<TD style="white-space: nowrap;">2008-12-11</TD>
<TD align="center">528<BR>
0.3</TD>
<TD>First stable release</TD>
</TR>
<TR>
<TD style="white-space: nowrap;background-color:#fa8072;">2.0</TD>
<TD style="white-space: nowrap;">2009-05-24</TD>
<TD align="center">530<BR>
0.4</TD>
<TD>35% faster Javascript on the Sunspider benchmark. Mouse wheel support. Full-screen mode. Full-page zoom. Form autofill. Sort bookmarks by title. Tab docking to browser and desktop edges. Basic Greasemonkey support.</TD>
</TR>
<TR>
<TD style="white-space: nowrap;background-color:#A0E75A;">3.0.195</TD>
<TD style="white-space: nowrap;">2009-10-12</TD>
<TD align="center">532<BR>
1.2</TD>
<TD>New "new tab" page for improved customization. 25% faster Javascript. HTML 5 video and audio tag support.</TD>
</TR>
<TR>
<TD style="white-space: nowrap;background-color:#D6B4F1;">4.0.249</TD>
<TD style="white-space: nowrap;">2009-11-23</TD>
<TD align="center">532<BR>
1.3</TD>
<TD align="center">Windows<BR>
Mac<BR>
Linux</TD>
<TD>Bookmark sync and extension support. Completely pass Acid3 test. DOMStorage support.</TD>
</TR>
</TBODY></TABLE>
<H2><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=6" title="Edit section: Features">edit</A>]</SPAN> <SPAN class="mw-headline" id="Features">Features</SPAN></H2>
<P>Google Chrome aims to improve security, speed, and stability. There are extensive differences from its peers in Chrome's minimalistic user interface,<SUP id="cite_ref-chrome-comic_13-4" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP> which is atypical of modern web browsers.<SUP id="cite_ref-44" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-44"><SPAN>[</SPAN>45<SPAN>]</SPAN></A></SUP> Chrome's strength is its application performance and <A href="http://en.wikipedia.org/wiki/JavaScript" title="JavaScript">JavaScript</A> processing speed, both of which were independently verified by multiple websites to be the swiftest among the major browsers of its time.<SUP id="cite_ref-45" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-45"><SPAN>[</SPAN>46<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-46" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-46"><SPAN>[</SPAN>47<SPAN>]</SPAN></A></SUP> Many of Chrome's unique features had been previously announced by other browser developers, but Google was the first to implement and publicly release them.<SUP id="cite_ref-47" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-47"><SPAN>[</SPAN>48<SPAN>]</SPAN></A></SUP> For example, its most prominent <A href="http://en.wikipedia.org/wiki/Graphical_user_interface" title="Graphical user interface">graphical user interface</A> (GUI) innovation, the merging of the <A href="http://en.wikipedia.org/wiki/Address_bar" title="Address bar">address bar</A> and search bar (the <I>Omnibox</I>) was first announced by <A href="http://en.wikipedia.org/wiki/Mozilla_Corporation" title="Mozilla Corporation">Mozilla</A> in May 2008 as a planned feature for <A href="http://en.wikipedia.org/wiki/Mozilla_Firefox" title="Mozilla Firefox">Firefox</A>.<SUP id="cite_ref-48" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-48"><SPAN>[</SPAN>49<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=7" title="Edit section: Security">edit</A>]</SPAN> <SPAN class="mw-headline" id="Security">Security</SPAN></H3>
<DIV class="thumb tright">
<DIV class="thumbinner" style="width:302px;"><A href="http://en.wikipedia.org/wiki/File:Google_Chrome_3.0_Incognito_mode.PNG" class="image"><IMG alt="" src="./chrome_wikipedia_ORIGINAL_files/300px-Google_Chrome_3.0_Incognito_mode.PNG" width="300" height="240" class="thumbimage"></A>
<DIV class="thumbcaption">
<DIV class="magnify"><A href="http://en.wikipedia.org/wiki/File:Google_Chrome_3.0_Incognito_mode.PNG" class="internal" title="Enlarge"><IMG src="./chrome_wikipedia_ORIGINAL_files/magnify-clip.png" width="15" height="11" alt=""></A></DIV>
Incognito mode in Google Chrome 3.0</DIV>
</DIV>
</DIV>
<P>Chrome periodically downloads updates of two <A href="http://en.wikipedia.org/wiki/Blacklist_(computing)" title="Blacklist (computing)">blacklists</A> (one for <A href="http://en.wikipedia.org/wiki/Phishing" title="Phishing">phishing</A> and one for <A href="http://en.wikipedia.org/wiki/Malware" title="Malware">malware</A>), and warns users when they attempt to visit a harmful site. This service is also made available for use by others via a free public <A href="http://en.wikipedia.org/wiki/API" title="API" class="mw-redirect">API</A> called "Google Safe Browsing API". Google notifies the owners of listed sites who may not be aware of the presence of the harmful software.<SUP id="cite_ref-chrome-comic_13-5" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP></P>
<P>Chrome will typically allocate each <A href="http://en.wikipedia.org/wiki/Tab_(GUI)" title="Tab (GUI)">tab</A> to <A href="http://en.wikipedia.org/wiki/Sandbox_(computer_security)" title="Sandbox (computer security)">fit</A> into its own <A href="http://en.wikipedia.org/wiki/Process_(computing)" title="Process (computing)">process</A> to "prevent malware from installing itself" or "using what happens in one tab to affect what happens in another", however the actual process allocation model is more complex.<SUP id="cite_ref-49" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-49"><SPAN>[</SPAN>50<SPAN>]</SPAN></A></SUP> Following the <A href="http://en.wikipedia.org/wiki/Principle_of_least_privilege" title="Principle of least privilege">principle of least privilege</A>, each process is stripped of its rights and can compute, but cannot write files or read from sensitive areas (e.g. documents, desktop)—this is similar to the "Protected Mode" used by Internet Explorer on <A href="http://en.wikipedia.org/wiki/Windows_Vista" title="Windows Vista">Windows Vista</A> and <A href="http://en.wikipedia.org/wiki/Windows_7" title="Windows 7">Windows 7</A>. The <I>Sandbox Team</I> is said to have "taken this existing process boundary and made it into a <A href="http://en.wikipedia.org/wiki/Operating_system-level_virtualization" title="Operating system-level virtualization">jail</A>";<SUP id="cite_ref-50" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-50"><SPAN>[</SPAN>51<SPAN>]</SPAN></A></SUP> for example, malicious software running in one tab is supposed to be unable to sniff credit card numbers entered in another tab, interact with mouse inputs, or tell Windows to "run an executable on start-up" and it will be terminated when the tab is closed.<SUP id="cite_ref-chrome-comic_13-6" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP> This enforces a simple <A href="http://en.wikipedia.org/wiki/Computer_security_model" title="Computer security model">computer security model</A> whereby there are two levels of <A href="http://en.wikipedia.org/wiki/Multilevel_security" title="Multilevel security">multilevel security</A> (<I>user</I> and <I>sandbox</I>) and the <I>sandbox</I> can only respond to communication requests initiated by the <I>user</I>.<SUP id="cite_ref-sec_51-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-sec-51"><SPAN>[</SPAN>52<SPAN>]</SPAN></A></SUP></P>
<P>Typically, <A href="http://en.wikipedia.org/wiki/Plugin" title="Plugin" class="mw-redirect">plugins</A> such as <A href="http://en.wikipedia.org/wiki/Adobe_Flash_Player" title="Adobe Flash Player">Adobe Flash Player</A> are not standardized and as such, cannot be sandboxed as tabs can be. These often need to run at, or above, the security level of the browser itself. To reduce exposure to attack, plugins are run in separate processes that communicate with the renderer, itself operating at "very low privileges" in dedicated per-tab processes. Plugins will need to be modified to operate within this <A href="http://en.wikipedia.org/wiki/Software_architecture" title="Software architecture">software architecture</A> while following the <A href="http://en.wikipedia.org/wiki/Principle_of_least_privilege" title="Principle of least privilege">principle of least privilege</A>.<SUP id="cite_ref-chrome-comic_13-7" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP> Chrome supports the <A href="http://en.wikipedia.org/wiki/Netscape_Plugin_Application_Programming_Interface" title="Netscape Plugin Application Programming Interface" class="mw-redirect">Netscape Plugin Application Programming Interface</A> (NPAPI),<SUP id="cite_ref-52" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-52"><SPAN>[</SPAN>53<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-chrome-faq-activex_53-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-faq-activex-53"><SPAN>[</SPAN>54<SPAN>]</SPAN></A></SUP> but does not support the embedding of <A href="http://en.wikipedia.org/wiki/ActiveX" title="ActiveX">ActiveX</A> controls.<SUP id="cite_ref-chrome-faq-activex_53-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-faq-activex-53"><SPAN>[</SPAN>54<SPAN>]</SPAN></A></SUP> <A href="http://en.wikipedia.org/wiki/Java_applet" title="Java applet">Java applets</A> support is available in Chrome with Java 6 update 12 and above.<SUP id="cite_ref-54" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-54"><SPAN>[</SPAN>55<SPAN>]</SPAN></A></SUP></P>
<P>A <A href="http://en.wikipedia.org/wiki/Privacy_mode" title="Privacy mode">private browsing</A> feature called <I>Incognito</I> mode is provided that prevents the browser from storing any history information or <A href="http://en.wikipedia.org/wiki/HTTP_cookie" title="HTTP cookie">cookies</A> from the websites visited. Incognito mode is similar to the private browsing feature available in <A href="http://en.wikipedia.org/wiki/Apple_Inc." title="Apple Inc.">Apple</A>'s <A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">Safari</A>, <A href="http://en.wikipedia.org/wiki/Mozilla_Firefox_3.5" title="Mozilla Firefox 3.5">Mozilla Firefox 3.5</A>, and <A href="http://en.wikipedia.org/wiki/Internet_Explorer_8" title="Internet Explorer 8">Internet Explorer 8</A>.<SUP id="cite_ref-55" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-55"><SPAN>[</SPAN>56<SPAN>]</SPAN></A></SUP></P>
<P>A <A href="http://en.wikipedia.org/wiki/Denial-of-service_attack" title="Denial-of-service attack">denial-of-service</A> vulnerability was found that allowed a malicious web page to crash the whole web browser.<SUP id="cite_ref-56" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-56"><SPAN>[</SPAN>57<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-crash_57-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-crash-57"><SPAN>[</SPAN>58<SPAN>]</SPAN></A></SUP> Google Chrome developers confirmed the flaw, and it was fixed in the 0.2.149.29 release.<SUP id="cite_ref-58" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-58"><SPAN>[</SPAN>59<SPAN>]</SPAN></A></SUP> Other security issues have been discovered in Chrome, including a vulnerability in versions prior to 2.0.172.33 that would allow a malicious or compromised web site to crash the browser and execute hostile code on a victim's system.<SUP id="cite_ref-59" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-59"><SPAN>[</SPAN>60<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=8" title="Edit section: Speed">edit</A>]</SPAN> <SPAN class="mw-headline" id="Speed">Speed</SPAN></H3>
<P>The <A href="http://en.wikipedia.org/wiki/JavaScript" title="JavaScript">JavaScript</A> <A href="http://en.wikipedia.org/wiki/Virtual_machine" title="Virtual machine">virtual machine</A> used by Chrome, the <A href="http://en.wikipedia.org/wiki/V8_JavaScript_engine" title="V8 JavaScript engine" class="mw-redirect">V8 JavaScript engine</A>, has features such as <I><A href="http://en.wikipedia.org/wiki/Just-in-time_compilation" title="Just-in-time compilation">dynamic code generation</A></I>, <I>hidden class transitions</I> and <I><A href="http://en.wikipedia.org/wiki/Garbage_collection_(computer_science)#Precise_vs._conservative_and_internal_pointers" title="Garbage collection (computer science)">precise garbage collection</A></I>.<SUP id="cite_ref-chrome-comic_13-8" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP> Tests by Google in September 2008 showed that V8 was about twice as fast as <A href="http://en.wikipedia.org/wiki/Mozilla_Firefox_3.0" title="Mozilla Firefox 3.0" class="mw-redirect">Firefox 3.0</A> and the WebKit nightlies.</P>
<P>Several websites performed benchmark tests using the <A href="http://en.wikipedia.org/wiki/WebKit#SunSpider" title="WebKit">SunSpider JavaScript Benchmark</A> tool as well as Google's own set of computationally intense benchmarks, which include <A href="http://en.wikipedia.org/wiki/Ray_tracing_(graphics)" title="Ray tracing (graphics)">ray tracing</A> and <A href="http://en.wikipedia.org/wiki/Constraint_solving" title="Constraint solving" class="mw-redirect">constraint solving</A>.<SUP id="cite_ref-60" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-60"><SPAN>[</SPAN>61<SPAN>]</SPAN></A></SUP> They unanimously reported that Chrome performed much faster than all competitors against which it had been tested, including <A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">Safari</A>, <A href="http://en.wikipedia.org/wiki/Firefox_3.0" title="Firefox 3.0" class="mw-redirect">Firefox 3.0</A>, <A href="http://en.wikipedia.org/wiki/Internet_Explorer_7" title="Internet Explorer 7">Internet Explorer 7</A>, <A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">Opera</A>, and <A href="http://en.wikipedia.org/wiki/Internet_Explorer_8" title="Internet Explorer 8">Internet Explorer 8</A>.<SUP id="cite_ref-61" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-61"><SPAN>[</SPAN>62<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-62" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-62"><SPAN>[</SPAN>63<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-63" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-63"><SPAN>[</SPAN>64<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-64" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-64"><SPAN>[</SPAN>65<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-65" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-65"><SPAN>[</SPAN>66<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-66" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-66"><SPAN>[</SPAN>67<SPAN>]</SPAN></A></SUP></P>
<P>On September 3, 2008, Mozilla responded by stating that their own <A href="http://en.wikipedia.org/wiki/TraceMonkey" title="TraceMonkey" class="mw-redirect">TraceMonkey</A> JavaScript engine (then in beta), was faster than Chrome's V8 engine in some tests.<SUP id="cite_ref-67" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-67"><SPAN>[</SPAN>68<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-68" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-68"><SPAN>[</SPAN>69<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-69" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-69"><SPAN>[</SPAN>70<SPAN>]</SPAN></A></SUP> <A href="http://en.wikipedia.org/wiki/John_Resig" title="John Resig">John Resig</A>, Mozilla's JavaScript evangelist, further commented on the performance of different browsers on Google's own suite, finding Chrome "decimating" other browsers, but he questioned whether Google's suite was representative of real programs. He stated that Firefox 3.0 performed poorly on <A href="http://en.wikipedia.org/wiki/Recursion" title="Recursion">recursion</A> intensive benchmarks, such as those of Google, because the Mozilla team had not implemented recursion-tracing yet.<SUP id="cite_ref-70" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-70"><SPAN>[</SPAN>71<SPAN>]</SPAN></A></SUP></P>
<P>Two weeks after Chrome's launch the WebKit team announced a new JavaScript engine, <A href="http://en.wikipedia.org/wiki/WebKit#Further_development" title="WebKit">SquirrelFish Extreme</A>,<SUP id="cite_ref-71" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-71"><SPAN>[</SPAN>72<SPAN>]</SPAN></A></SUP> citing a 36% speed improvement over Chrome's V8 engine.<SUP id="cite_ref-72" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-72"><SPAN>[</SPAN>73<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-73" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-73"><SPAN>[</SPAN>74<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-74" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-74"><SPAN>[</SPAN>75<SPAN>]</SPAN></A></SUP></P>
<P>Chrome also uses <A href="http://en.wikipedia.org/wiki/Domain_Name_System" title="Domain Name System">DNS</A> prefetching to speed up website lookups.<SUP id="cite_ref-features_75-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-features-75"><SPAN>[</SPAN>76<SPAN>]</SPAN></A></SUP> This feature is available in Internet Explorer as an extension, and is built-in and enabled by default in Firefox 3.5.</P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=9" title="Edit section: Stability">edit</A>]</SPAN> <SPAN class="mw-headline" id="Stability">Stability</SPAN></H3>
<P>The <A href="http://en.wikipedia.org/wiki/Gears_(software)" title="Gears (software)">Gears</A> team implemented a multi-process architecture in Chrome,<SUP id="cite_ref-76" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-76"><SPAN>[</SPAN>77<SPAN>]</SPAN></A></SUP> similar to <I><A href="http://en.wikipedia.org/wiki/IE8#Software_architecture_.26_LCIE" title="IE8" class="mw-redirect">Loosely Coupled Internet Explorer (LCIE)</A></I> implemented by <A href="http://en.wikipedia.org/wiki/Internet_Explorer_8" title="Internet Explorer 8">Internet Explorer 8</A>.<SUP id="cite_ref-77" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-77"><SPAN>[</SPAN>78<SPAN>]</SPAN></A></SUP> By default, a separate process is allocated to each site instance and plugin, a procedure referred to as <A href="http://en.wikipedia.org/wiki/Process_isolation" title="Process isolation">process isolation</A>.<SUP id="cite_ref-78" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-78"><SPAN>[</SPAN>79<SPAN>]</SPAN></A></SUP> This prevents tasks from interfering with each other, increasing security and stability. An attacker successfully gaining access to one application cannot gain access to others<SUP class="noprint Template-Fact" title="This claim needs references to reliable sources from November 2009" style="white-space:nowrap;">[<I><A href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed">citation needed</A></I>]</SUP>, and failure in one instance results in a <A href="http://en.wikipedia.org/wiki/Screens_of_death#Sad_Tab" title="Screens of death">Sad Tab</A> <A href="http://en.wikipedia.org/wiki/Screens_of_death" title="Screens of death">screen of death</A>, similar to the well-known <A href="http://en.wikipedia.org/wiki/Screens_of_death#Sad_Mac" title="Screens of death">Sad Mac</A>, except only a single tab crashes instead of the whole application. This strategy exacts a fixed per-process cost up front, but results in less memory bloat overall as fragmentation is confined to each instance and no longer requires further memory allocations.<SUP id="cite_ref-79" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-79"><SPAN>[</SPAN>80<SPAN>]</SPAN></A></SUP></P>
<P>Chrome includes a <A href="http://en.wikipedia.org/wiki/Process_management_(computing)" title="Process management (computing)">process management</A> utility called <I>Task Manager</I> which allows the user to "see what sites are using the most <A href="http://en.wikipedia.org/wiki/Random_access_memory" title="Random access memory" class="mw-redirect">memory</A>, <A href="http://en.wikipedia.org/wiki/Download" title="Download" class="mw-redirect">downloading</A> the most <A href="http://en.wikipedia.org/wiki/Byte" title="Byte">bytes</A> and abusing [their] <A href="http://en.wikipedia.org/wiki/Central_processing_unit" title="Central processing unit">CPU</A>" (as well as the plugins which run in separate processes) and terminate them.<SUP id="cite_ref-chrome-comic_13-9" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=10" title="Edit section: User interface">edit</A>]</SPAN> <SPAN class="mw-headline" id="User_interface">User interface</SPAN></H3>
<P>By default, the main <A href="http://en.wikipedia.org/wiki/User_interface" title="User interface">user interface</A> includes back, forward, refresh, home, bookmark, go, and cancel buttons. The home button can be configured through options to take the user to the New Tab Page or a custom home page.</P>
<P><A href="http://en.wikipedia.org/wiki/Tab_(GUI)" title="Tab (GUI)">Tabs</A> are the primary component of Chrome's user interface and as such, have been moved to the top of the window rather than below the controls. This subtle change contrasts with many existing tabbed browsers which are based on <A href="http://en.wikipedia.org/wiki/Window_(computing)" title="Window (computing)">windows</A> and contain <A href="http://en.wikipedia.org/wiki/Tab_(GUI)" title="Tab (GUI)">tabs</A>. Tabs (including their state) can be transferred seamlessly between window containers by dragging. Each tab has its own set of controls, including the <I>Omnibox</I>.<SUP id="cite_ref-chrome-comic_13-10" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP></P>
<P>The <I>Omnibox</I> is the <A href="http://en.wikipedia.org/wiki/Address_bar" title="Address bar">URL box</A> at the top of each tab, which combines the functionality of both the Address bar and search box. If you enter the URL of a site you have previously searched from, Chrome will let you press <I>Tab</I> to search the site again directly from the Omnibox. When you start typing in the Omnibox, Chrome provides suggestions for previously visited sites (based on the URL or in-page text), popular websites (not necessarily visited before - powered by <A href="http://en.wikipedia.org/wiki/Google_Suggest" title="Google Suggest" class="mw-redirect">Google Suggest</A>), and popular searches. Chrome will also <A href="http://en.wikipedia.org/wiki/Autocomplete" title="Autocomplete">autocomplete</A> the URLs of sites you visit often.<SUP id="cite_ref-chrome-comic_13-11" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP> If you type several keywords into the Omnibox and press enter, Chrome will conduct the search using your default search engine.</P>
<DIV class="thumb tright">
<DIV class="thumbinner" style="width:182px;"><A href="http://en.wikipedia.org/wiki/File:Google_Chrome_3.0_maximized_windows_7.PNG" class="image"><IMG alt="" src="./chrome_wikipedia_ORIGINAL_files/180px-Google_Chrome_3.0_maximized_windows_7.PNG" width="180" height="108" class="thumbimage"></A>
<DIV class="thumbcaption">
<DIV class="magnify"><A href="http://en.wikipedia.org/wiki/File:Google_Chrome_3.0_maximized_windows_7.PNG" class="internal" title="Enlarge"><IMG src="./chrome_wikipedia_ORIGINAL_files/magnify-clip.png" width="15" height="11" alt=""></A></DIV>
When Chrome is maximized, the tabs are flush with the top of the title bar.</DIV>
</DIV>
</DIV>
<P>When Google Chrome is not maximized, the tab bar appears directly under the title bar. When maximized, the tabs become flush with the top of the titlebar. Like other browsers, it has a full-screen mode that hides the operating system's interface as well as the browser chrome.</P>
<P>One of Chrome's differentiating features is the <I>New Tab Page</I>, which can replace the browser <A href="http://en.wikipedia.org/wiki/Home_page" title="Home page" class="mw-redirect">home page</A> and is displayed when a new tab is created. Originally, this showed thumbnails of the nine most visited web sites, along with frequent searches, recent bookmarks, and recently closed tabs; similar to <A href="http://en.wikipedia.org/wiki/Internet_Explorer" title="Internet Explorer">Internet Explorer</A> and <A href="http://en.wikipedia.org/wiki/Firefox" title="Firefox" class="mw-redirect">Firefox</A> with <A href="http://en.wikipedia.org/wiki/Google_Toolbar" title="Google Toolbar">Google Toolbar 6</A>, or <A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">Opera's</A> Speed Dial.<SUP id="cite_ref-chrome-comic_13-12" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP> In Google Chrome 2.0, the New Tab Page was updated to allow users to hide thumbnails they didn't want to appear.<SUP id="cite_ref-chrome.blogspot.com_36-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome.blogspot.com-36"><SPAN>[</SPAN>37<SPAN>]</SPAN></A></SUP></P>
<DIV class="thumb tright">
<DIV class="thumbinner" style="width:302px;"><A href="http://en.wikipedia.org/wiki/File:Google_Chrome_3.0.195.25_NTP.PNG" class="image"><IMG alt="" src="./chrome_wikipedia_ORIGINAL_files/300px-Google_Chrome_3.0.195.25_NTP.PNG" width="300" height="240" class="thumbimage"></A>
<DIV class="thumbcaption">
<DIV class="magnify"><A href="http://en.wikipedia.org/wiki/File:Google_Chrome_3.0.195.25_NTP.PNG" class="internal" title="Enlarge"><IMG src="./chrome_wikipedia_ORIGINAL_files/magnify-clip.png" width="15" height="11" alt=""></A></DIV>
The New Tab page in Google Chrome 3.0</DIV>
</DIV>
</DIV>
<P>Starting in version 3.0, the New Tab Page was revamped to display thumbnails of the 8 most visited web sites. The thumbnails could be rearranged, pinned, and removed. Alternatively, a list of text links could be displayed instead of thumbnails. It also features a "Recently closed" bar that shows recently closed tabs and a "tips" section that displays hints and tricks for using the browser.<SUP id="cite_ref-80" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-80"><SPAN>[</SPAN>81<SPAN>]</SPAN></A></SUP></P>
<P>Chrome includes a bookmark manager that can be accessed from a menu. Adding the <A href="http://en.wikipedia.org/wiki/Command-line_interface" title="Command-line interface">command-line</A> option: <I>--bookmark-menu</I> adds a bookmarks button to the right of the Omnibox that can be used in place of the bookmarks bar.<SUP id="cite_ref-81" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-81"><SPAN>[</SPAN>82<SPAN>]</SPAN></A></SUP></P>
<P><A href="http://en.wikipedia.org/wiki/Popup" title="Popup">Popup</A> windows "are scoped to the tab they came from" and will not appear outside the tab unless the user explicitly drags them out.<SUP id="cite_ref-chrome-comic_13-13" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP></P>
<DIV class="thumb tright">
<DIV class="thumbinner" style="width:182px;"><A href="http://en.wikipedia.org/wiki/File:Google_Chrome_3.0_options_window.PNG" class="image"><IMG alt="" src="./chrome_wikipedia_ORIGINAL_files/180px-Google_Chrome_3.0_options_window.PNG" width="180" height="183" class="thumbimage"></A>
<DIV class="thumbcaption">
<DIV class="magnify"><A href="http://en.wikipedia.org/wiki/File:Google_Chrome_3.0_options_window.PNG" class="internal" title="Enlarge"><IMG src="./chrome_wikipedia_ORIGINAL_files/magnify-clip.png" width="15" height="11" alt=""></A></DIV>
The options window in Google Chrome 3.0 with default settings</DIV>
</DIV>
</DIV>
<P>Google Chrome's options window has three tabs: <I>Basic</I>, <I>Personal Stuff</I>, and <I>Under the Hood</I>. The <I>Basic</I> tab includes options for the home page, search engine, and default browser. The <I>Personal Stuff</I> tab lets you configure saved passwords, form autofill, browsing data, and themes. The <I>Under the Hood</I> tab allows you to change network, privacy, download, and security settings.</P>
<P>Chrome allows users to make local desktop <A href="http://en.wikipedia.org/wiki/Computer_shortcut" title="Computer shortcut">shortcuts</A> that open <A href="http://en.wikipedia.org/wiki/Web_application" title="Web application">web applications</A> in the browser. The browser, when opened in this way, contains none of the regular interface except for the title bar, so as not to "interrupt anything the user is trying to do." This allows web applications to run alongside local <A href="http://en.wikipedia.org/wiki/Software" title="Software" class="mw-redirect">software</A> (similar to <A href="http://en.wikipedia.org/wiki/Mozilla_Prism" title="Mozilla Prism">Mozilla Prism</A> and <A href="http://en.wikipedia.org/wiki/Fluid_(browser" title="Fluid (browser" class="mw-redirect">Fluid</A>).<SUP id="cite_ref-chrome-comic_13-14" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-comic-13"><SPAN>[</SPAN>14<SPAN>]</SPAN></A></SUP></P>
<P>Chrome does not have a status bar, but displays loading activity and hover-over information via a status bubble that pops up at the bottom left of the relevant page.</P>
<P>For <A href="http://en.wikipedia.org/wiki/Web_developer" title="Web developer">web developers</A>, Chrome features an element inspector similar to the one in <A href="http://en.wikipedia.org/wiki/Firebug_(Firefox_extension)" title="Firebug (Firefox extension)">Firebug</A>.<SUP id="cite_ref-features_75-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-features-75"><SPAN>[</SPAN>76<SPAN>]</SPAN></A></SUP></P>
<P>As part of Google's <A href="http://en.wikipedia.org/wiki/Google%27s_hoaxes#2009" title="Google&#39;s hoaxes">April Fools' Day jokes</A>, a special build of Chrome was released on 1 April 2009 with the additional feature of being able to render pages in <A href="http://en.wikipedia.org/wiki/Anaglyph_image" title="Anaglyph image">anaglyph 3D</A>.<SUP id="cite_ref-chrome-3d_82-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-chrome-3d-82"><SPAN>[</SPAN>83<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=11" title="Edit section: Extensions">edit</A>]</SPAN> <SPAN class="mw-headline" id="Extensions">Extensions</SPAN></H3>
<P>When Google launched Chrome in September, 2008, they stated that an <A href="http://en.wikipedia.org/wiki/Application_programming_interface" title="Application programming interface">application programming interface</A> was planned.<SUP id="cite_ref-83" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-83"><SPAN>[</SPAN>84<SPAN>]</SPAN></A></SUP> On 1 December 2008, they announced that development of an extension system had begun.<SUP id="cite_ref-84" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-84"><SPAN>[</SPAN>85<SPAN>]</SPAN></A></SUP> Details were announced in May 2009, at Google I/O.<SUP id="cite_ref-85" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-85"><SPAN>[</SPAN>86<SPAN>]</SPAN></A></SUP></P>
<P>On 9 September 2009, Google enabled extensions by default on Chrome's Dev channel, and provided several sample extensions for testing.<SUP id="cite_ref-86" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-86"><SPAN>[</SPAN>87<SPAN>]</SPAN></A></SUP> On 23 November 2009, Google opened Chrome's extension gallery to developer submissions, promising a public beta launch soon.<SUP id="cite_ref-87" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-87"><SPAN>[</SPAN>88<SPAN>]</SPAN></A></SUP> The extension gallery beta was officially launched on 8 December 2009, containing over 300 extensions.<SUP id="cite_ref-88" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-88"><SPAN>[</SPAN>89<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=12" title="Edit section: Themes">edit</A>]</SPAN> <SPAN class="mw-headline" id="Themes">Themes</SPAN></H3>
<P>Starting with Google Chrome 3.0, users can install themes to alter the appearance of the browser.<SUP id="cite_ref-89" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-89"><SPAN>[</SPAN>90<SPAN>]</SPAN></A></SUP> Many free third-party themes are provided in an online gallery,<SUP id="cite_ref-90" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-90"><SPAN>[</SPAN>91<SPAN>]</SPAN></A></SUP> accessible through a "Get themes" button in Chrome's options.<SUP id="cite_ref-91" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-91"><SPAN>[</SPAN>92<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=13" title="Edit section: Usage tracking">edit</A>]</SPAN> <SPAN class="mw-headline" id="Usage_tracking">Usage tracking</SPAN></H3>
<P>Chrome sends details about its usage to <A href="http://en.wikipedia.org/wiki/Google" title="Google">Google</A> through both optional and non-optional user tracking mechanisms.<SUP id="cite_ref-92" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-92"><SPAN>[</SPAN>93<SPAN>]</SPAN></A></SUP></P>
<TABLE class="wikitable" border="1" width="64%">
<CAPTION>Tracking methods</CAPTION>
<TBODY><TR>
<TH>Method<SUP id="cite_ref-iron_93-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-iron-93"><SPAN>[</SPAN>94<SPAN>]</SPAN></A></SUP></TH>
<TH>Information sent</TH>
<TH>When</TH>
<TH>Optional?</TH>
</TR>
<TR>
<TD valign="top"><B>RLZ identifier</B><SUP id="cite_ref-94" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-94"><SPAN>[</SPAN>95<SPAN>]</SPAN></A></SUP></TD>
<TD>Encoded string, according to Google, contains non-identifying information such as when Chrome was installed.<SUP id="cite_ref-95" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-95"><SPAN>[</SPAN>96<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-privacy_96-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-privacy-96"><SPAN>[</SPAN>97<SPAN>]</SPAN></A></SUP></TD>
<TD>
<UL>
<LI>Every 24 hours</LI>
<LI>On Google search query</LI>
<LI>When "significant events occur"</LI>
</UL>
</TD>
<TD style="background:#ff9090; color:black;" class="table-no">No</TD>
</TR>
<TR>
<TD valign="top"><B>clientID</B><SUP id="cite_ref-blogoscoped_97-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-blogoscoped-97"><SPAN>[</SPAN>98<SPAN>]</SPAN></A></SUP></TD>
<TD>Unique Identifier used for statistics service</TD>
<TD style="background: #e4e4e4; color: black;" class="table-unknown">Unknown</TD>
<TD style="background:#90ff90; color:black;" class="table-yes">Yes</TD>
</TR>
<TR>
<TD valign="top"><B>Suggest</B><SUP id="cite_ref-blogoscoped_97-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-blogoscoped-97"><SPAN>[</SPAN>98<SPAN>]</SPAN></A></SUP></TD>
<TD>Text typed into the <A href="http://en.wikipedia.org/wiki/Address_bar" title="Address bar">address bar</A></TD>
<TD>While being typed</TD>
<TD style="background:#90ff90; color:black;" class="table-yes">Yes</TD>
</TR>
<TR>
<TD valign="top"><B>Page not found</B></TD>
<TD>Text typed into the address bar</TD>
<TD>Upon receiving "Server not found" response</TD>
<TD style="background:#90ff90; color:black;" class="table-yes">Yes</TD>
</TR>
<TR>
<TD valign="top"><B>Bug tracker</B></TD>
<TD>Details about crashes and failures</TD>
<TD style="background: #e4e4e4; color: black;" class="table-unknown">Unknown</TD>
<TD style="background:#90ff90; color:black;" class="table-yes">Yes</TD>
</TR>
</TBODY></TABLE>
<P>Some of the tracking mechanisms can be optionally enabled and disabled through the installation interface<SUP class="noprint Template-Fact" title="This claim needs references to reliable sources from March 2009" style="white-space:nowrap;">[<I><A href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed">citation needed</A></I>]</SUP> and through the browser's options dialog.<SUP id="cite_ref-blogoscoped_97-2" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-blogoscoped-97"><SPAN>[</SPAN>98<SPAN>]</SPAN></A></SUP> A <A href="http://en.wikipedia.org/wiki/Freeware" title="Freeware">freeware</A> program called UnChrome has been made to erase the clientID on the hard drive.<SUP id="cite_ref-98" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-98"><SPAN>[</SPAN>99<SPAN>]</SPAN></A></SUP> Unofficial builds, such as <A href="http://en.wikipedia.org/wiki/SRWare_Iron" title="SRWare Iron">SRWare Iron</A>, seek to remove these features from the browser altogether.<SUP id="cite_ref-iron_93-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-iron-93"><SPAN>[</SPAN>94<SPAN>]</SPAN></A></SUP> The RLZ feature is not included in the Chromium browser either.<SUP id="cite_ref-privacy_96-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-privacy-96"><SPAN>[</SPAN>97<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=14" title="Edit section: Release channels and updates">edit</A>]</SPAN> <SPAN class="mw-headline" id="Release_channels_and_updates">Release channels and updates</SPAN></H3>
<P>On 8 January 2009 Google introduced a new release system with three distinct channels: Stable, Beta, and Developer preview (called the "Dev" channel). Before this change there were only two channels: Beta and Developer preview. All previous Developer channel users were moved to the Beta channel. The reason given by Google is that the Developer channel builds are less stable and polished than those that Developer channel users were getting during Google Chrome's Beta period. The stable channel will be updated with features and fixes once they have been thoroughly tested in the Beta channel, and the Beta channel will be updated roughly monthly with stable and complete features from the Developer channel. The Developer channel is where ideas get tested (and sometimes fail) and can be very unstable at times.<SUP id="cite_ref-99" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-99"><SPAN>[</SPAN>100<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-100" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-100"><SPAN>[</SPAN>101<SPAN>]</SPAN></A></SUP></P>
<P>Chrome automatically keeps itself up to date. The details differ by platform. On Windows, it uses <A href="http://en.wikipedia.org/wiki/Google_Updater" title="Google Updater" class="mw-redirect">Google Updater</A>, and autoupdate can be controlled via <A href="http://en.wikipedia.org/wiki/Group_Policy" title="Group Policy">Group Policy</A>,<SUP id="cite_ref-101" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-101"><SPAN>[</SPAN>102<SPAN>]</SPAN></A></SUP> or you can download a <A href="http://en.wikipedia.org/wiki/Standalone_software" title="Standalone software">standalone</A> version that does not autoupdate.<SUP id="cite_ref-102" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-102"><SPAN>[</SPAN>103<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-103" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-103"><SPAN>[</SPAN>104<SPAN>]</SPAN></A></SUP> On Mac, it uses Google Update Service, and autoupdate can be controlled via the Mac OS X "defaults" system.<SUP id="cite_ref-104" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-104"><SPAN>[</SPAN>105<SPAN>]</SPAN></A></SUP> On Linux, it lets the system's normal <A href="http://en.wikipedia.org/wiki/Package_management_system" title="Package management system">package management system</A> do the updates.</P>
<P>Google uses its Courgette algorithm to provide the binary difference of the user's current version in relation to the new version that's about to be automatically updated to. These tiny updates are well suited to minor security fixes and allow Google to push new versions of Chrome to users quickly, thereby reducing the window of vulnerability of newly discovered security flaws.<SUP id="cite_ref-105" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-105"><SPAN>[</SPAN>106<SPAN>]</SPAN></A></SUP></P>
<H2><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=15" title="Edit section: Reception">edit</A>]</SPAN> <SPAN class="mw-headline" id="Reception">Reception</SPAN></H2>
<P><I><A href="http://en.wikipedia.org/wiki/The_Daily_Telegraph" title="The Daily Telegraph">The Daily Telegraph</A>'</I>s Matthew Moore summarizes the verdict of early reviewers: "Google Chrome is attractive, fast and has some impressive new features, but may not—yet—be a threat to its Microsoft rival."<SUP id="cite_ref-106" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-106"><SPAN>[</SPAN>107<SPAN>]</SPAN></A></SUP></P>
<P>Microsoft reportedly "played down the threat from Chrome" and "predicted that most people will embrace <A href="http://en.wikipedia.org/wiki/Internet_Explorer_8" title="Internet Explorer 8">Internet Explorer 8</A>." <A href="http://en.wikipedia.org/wiki/Opera_Software" title="Opera Software">Opera Software</A> said that "Chrome will strengthen the Web as the biggest application platform in the world."<SUP id="cite_ref-ap_107-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-ap-107"><SPAN>[</SPAN>108<SPAN>]</SPAN></A></SUP> Mozilla said that Chrome's introduction into the web browser market comes as "no real surprise", that "Chrome is not aimed at competing with Firefox", and furthermore that it should not affect <A href="http://en.wikipedia.org/wiki/Mozilla_Foundation#Financing" title="Mozilla Foundation">Google's revenue relationship with Mozilla</A>.<SUP id="cite_ref-108" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-108"><SPAN>[</SPAN>109<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-109" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-109"><SPAN>[</SPAN>110<SPAN>]</SPAN></A></SUP></P>
<BLOCKQUOTE class="templatequote">
<DIV>Chrome's design bridges the gap between desktop and so-called "<A href="http://en.wikipedia.org/wiki/Cloud_computing" title="Cloud computing">cloud computing</A>." At the touch of a button, Chrome lets you make a desktop, <A href="http://en.wikipedia.org/wiki/Start_menu" title="Start menu">Start menu</A>, or <A href="http://en.wikipedia.org/wiki/Quick_Launch" title="Quick Launch" class="mw-redirect">Quick Launch</A> shortcut to any Web page or <A href="http://en.wikipedia.org/wiki/Web_application" title="Web application">Web application</A>, blurring the line between what's online and what's inside your PC. For example, I created a desktop shortcut for <A href="http://en.wikipedia.org/wiki/Google_Maps" title="Google Maps">Google Maps</A>. When you create a shortcut for a Web application, Chrome strips away all of the <A href="http://en.wikipedia.org/wiki/Toolbar" title="Toolbar">toolbars</A> and tabs from the window, leaving you with something that feels much more like a <A href="http://en.wikipedia.org/wiki/Desktop_application" title="Desktop application" class="mw-redirect">desktop application</A> than like a Web application or page.</DIV>
<DIV class="templatequotecite"><CITE><A href="http://en.wikipedia.org/wiki/PC_World_(magazine)" title="PC World (magazine)">PC World</A><SUP id="cite_ref-110" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-110"><SPAN>[</SPAN>111<SPAN>]</SPAN></A></SUP></CITE></DIV>
</BLOCKQUOTE>
<P>On 9 September 2008, when Chrome was still in beta, the <A href="http://en.wikipedia.org/wiki/Federal_Office_for_Information_Security" title="Federal Office for Information Security">German Federal Office for Information Security</A> (BSI) issued a statement about their first examination of Chrome, expressing a concern over the prominent download links on Google's German web page, because "beta versions should not be employed for general use applications" and browser manufacturers should provide appropriate instructions regarding the use of pre-released software. They did, however, praise the browser's technical contribution to improving security on the web.<SUP id="cite_ref-111" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-111"><SPAN>[</SPAN>112<SPAN>]</SPAN></A></SUP></P>
<P>Concern about Chrome's optional usage collection and tracking have been noted in several publications.<SUP id="cite_ref-112" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-112"><SPAN>[</SPAN>113<SPAN>]</SPAN></A></SUP><SUP id="cite_ref-113" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-113"><SPAN>[</SPAN>114<SPAN>]</SPAN></A></SUP> On 2 September 2008, a <A href="http://en.wikipedia.org/wiki/CNET" title="CNET" class="mw-redirect">CNET</A> news item<SUP id="cite_ref-114" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-114"><SPAN>[</SPAN>115<SPAN>]</SPAN></A></SUP> drew attention to a passage in the terms of service for the initial beta release, which seemed to grant to Google a license to all content transferred via the Chrome browser. The passage in question was inherited from the general Google terms of service.<SUP id="cite_ref-115" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-115"><SPAN>[</SPAN>116<SPAN>]</SPAN></A></SUP> On the same day, Google responded to this criticism by stating that the language used was borrowed from other products, and removed the passage in question from the Terms of Service.<SUP id="cite_ref-116" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-116"><SPAN>[</SPAN>117<SPAN>]</SPAN></A></SUP> Google noted that this change would "apply retroactively to all users who have downloaded Google Chrome."<SUP id="cite_ref-license-change_117-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-license-change-117"><SPAN>[</SPAN>118<SPAN>]</SPAN></A></SUP> There was subsequent concern and confusion about whether and what information the program communicates back to Google. The company stated that usage metrics are only sent when users opt in by checking the option "help make Google Chrome better by automatically sending usage statistics and crash reports to Google" when the browser is installed.<SUP id="cite_ref-118" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-118"><SPAN>[</SPAN>119<SPAN>]</SPAN></A></SUP></P>
<H3><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=16" title="Edit section: Reverse-engineering issues with Windows">edit</A>]</SPAN> <SPAN class="mw-headline" id="Reverse-engineering_issues_with_Windows">Reverse-engineering issues with Windows</SPAN></H3>
<P>On 11 September 2008, a few days after the release of Chrome's source code, <A href="http://en.wikipedia.org/wiki/Scott_Hanselman" title="Scott Hanselman">Scott Hanselman</A> noticed a comment in Chrome's code saying "You can find this information by disassembling Vista's SP1 kernel32.dll with your favorite <A href="http://en.wikipedia.org/wiki/Disassembler" title="Disassembler">disassembler</A>."<SUP id="cite_ref-Hanselman_119-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-Hanselman-119"><SPAN>[</SPAN>120<SPAN>]</SPAN></A></SUP> <A href="http://en.wikipedia.org/wiki/Ars_Technica" title="Ars Technica">Ars Technica</A> published an article asking, "<A href="http://arstechnica.com/articles/paedia/chrome-antics-did-google-reverse-engineer.ars" class="external text" rel="nofollow">Did Google reverse-engineer Windows?</A>" Google later denied disassembling Vista and referred to previous public discussion of the undocumented APIs that Google used.<SUP id="cite_ref-120" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-120"><SPAN>[</SPAN>121<SPAN>]</SPAN></A></SUP></P>
<H2><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=17" title="Edit section: See also">edit</A>]</SPAN> <SPAN class="mw-headline" id="See_also">See also</SPAN></H2>
<DIV class="noprint tright portal" style="border:solid #aaa 1px;margin:0.5em 0 0.5em 0.5em;">
<TABLE style="background:#f9f9f9; font-size:85%; line-height:110%;">
<TBODY><TR>
<TD><IMG alt="" src="./chrome_wikipedia_ORIGINAL_files/32px-Portal-puzzle.svg.png" width="32" height="28"></TD>
<TD style="padding:0 0.2em;"><I><B><A href="http://en.wikipedia.org/wiki/Portal:Free_software" title="Portal:Free software">Free software portal</A></B></I></TD>
</TR>
</TBODY></TABLE>
</DIV>
<UL>
<LI><A href="http://en.wikipedia.org/wiki/Comparison_of_web_browsers" title="Comparison of web browsers">Comparison of web browsers</A></LI>
<LI><A href="http://en.wikipedia.org/wiki/Internet_Explorer" title="Internet Explorer">Internet Explorer</A></LI>
<LI><A href="http://en.wikipedia.org/wiki/Mozilla_Firefox" title="Mozilla Firefox">Mozilla Firefox</A></LI>
<LI><A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">Safari</A></LI>
<LI><A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">Opera</A></LI>
<LI><A href="http://en.wikipedia.org/wiki/Chromium_(web_browser)" title="Chromium (web browser)">Chromium</A></LI>
<LI><A href="http://en.wikipedia.org/wiki/SRWare_Iron" title="SRWare Iron">SRWare Iron</A></LI>
<LI><A href="http://en.wikipedia.org/wiki/Google_Chrome_OS" title="Google Chrome OS">Google Chrome OS</A></LI>
</UL>
<H2><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=18" title="Edit section: References">edit</A>]</SPAN> <SPAN class="mw-headline" id="References">References</SPAN></H2>
<DIV class="references-small references-column-count references-column-count-2" style="-moz-column-count:2; column-count:2;">
<OL class="references">
<LI id="cite_note-Browser_Market_Share-0"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-Browser_Market_Share_0-0">^</A></B> <SPAN class="citation web">"<A href="http://marketshare.hitslink.com/browser-market-share.aspx?qprid=0" class="external text" rel="nofollow">Browser Market Share</A>". Net Applications. 2009-12-01<SPAN class="printonly">. <A href="http://marketshare.hitslink.com/browser-market-share.aspx?qprid=0" class="external free" rel="nofollow">http://marketshare.hitslink.com/browser-market-share.aspx?qprid=0</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-12-01</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Browser+Market+Share&amp;rft.atitle=&amp;rft.date=2009-12-01&amp;rft.pub=Net+Applications&amp;rft_id=http%3A%2F%2Fmarketshare.hitslink.com%2Fbrowser-market-share.aspx%3Fqprid%3D0&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-1"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-1">^</A></B> <SPAN class="citation web">"<A href="http://googleblog.blogspot.com/2009/12/google-chrome-for-holidays-mac-linux.html" class="external text" rel="nofollow">Google Chrome for the holidays: Mac, Linux and extensions in beta</A>"<SPAN class="printonly">. <A href="http://googleblog.blogspot.com/2009/12/google-chrome-for-holidays-mac-linux.html" class="external free" rel="nofollow">http://googleblog.blogspot.com/2009/12/google-chrome-for-holidays-mac-linux.html</A></SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+for+the+holidays%3A+Mac%2C+Linux+and+extensions+in+beta&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fgoogleblog.blogspot.com%2F2009%2F12%2Fgoogle-chrome-for-holidays-mac-linux.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-2"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-2">^</A></B> <SPAN class="citation web">"<A href="http://www.techpluto.com/top-google-chrome-extensions/" class="external text" rel="nofollow">Top Beta Chrome Extensions</A>"<SPAN class="printonly">. <A href="http://www.techpluto.com/top-google-chrome-extensions/" class="external free" rel="nofollow">http://www.techpluto.com/top-google-chrome-extensions/</A></SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Top+Beta+Chrome+Extensions&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fwww.techpluto.com%2Ftop-google-chrome-extensions%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-3"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-3">^</A></B> <A href="http://arstechnica.com/open-source/news/2008/09/google-unveils-chrome-source-code-and-linux-port.ars" class="external text" rel="nofollow">Google unveils Chrome source code and Linux port</A>, Ars Technica</LI>
<LI id="cite_note-4"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-4">^</A></B> "Google Chrome is built with open source code from Chromium." Retrieved from: <A href="http://dev.chromium.org/developers/how-tos/getting-started" class="external free" rel="nofollow">http://dev.chromium.org/developers/how-tos/getting-started</A>.</LI>
<LI id="cite_note-5"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-5">^</A></B> <I>"During a press briefing today, Google expressed hope that other browsers..."</I>, Retrieved from: <A href="http://arstechnica.com/open-source/news/2008/09/google-unveils-chrome-source-code-and-linux-port.ars" class="external text" rel="nofollow">Google unveils Chrome source code and Linux port</A>, Ars Technica</LI>
<LI id="cite_note-6"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-6">^</A></B> <SPAN class="citation web">"<A href="http://dev.chromium.org/Home" class="external text" rel="nofollow">Home (Chromium Developer Documentation)</A>". <I>Chromium Developer Documentation</I>. dev.chromium.org. 2009<SPAN class="printonly">. <A href="http://dev.chromium.org/Home" class="external free" rel="nofollow">http://dev.chromium.org/Home</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-05-05</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Home+%28Chromium+Developer+Documentation%29&amp;rft.atitle=Chromium+Developer+Documentation&amp;rft.date=2009&amp;rft.pub=dev.chromium.org&amp;rft_id=http%3A%2F%2Fdev.chromium.org%2FHome&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-7"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-7">^</A></B> <I>"Google has made the Chrome source available under a permissive BSD license so that..."</I>, Retrieved from: <A href="http://arstechnica.com/open-source/news/2008/09/google-unveils-chrome-source-code-and-linux-port.ars" class="external text" rel="nofollow">Google unveils Chrome source code and Linux port</A>, Ars Technica</LI>
<LI id="cite_note-8"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-8">^</A></B> <SPAN class="citation web">"<A href="http://code.google.com/chromium/terms.html" class="external text" rel="nofollow">Chromium Terms and Conditions</A>". <I><A href="http://en.wikipedia.org/wiki/Google_Code" title="Google Code">Google Code</A></I>. 2008-09-02<SPAN class="printonly">. <A href="http://code.google.com/chromium/terms.html" class="external free" rel="nofollow">http://code.google.com/chromium/terms.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Chromium+Terms+and+Conditions&amp;rft.atitle=%5B%5BGoogle+Code%5D%5D&amp;rft.date=2008-09-02&amp;rft_id=http%3A%2F%2Fcode.google.com%2Fchromium%2Fterms.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-9"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-9">^</A></B> <SPAN class="citation news">McAllister, Neil (2008-09-11). "<A href="http://weblog.infoworld.com/fatalexception/archives/2008/09/building_google.html" class="external text" rel="nofollow">Building Google Chrome: A first look</A>". <I>Fatal Exception</I> (InfoWorld)<SPAN class="printonly">. <A href="http://weblog.infoworld.com/fatalexception/archives/2008/09/building_google.html" class="external free" rel="nofollow">http://weblog.infoworld.com/fatalexception/archives/2008/09/building_google.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-16</SPAN>.  "As the name suggests, Chromium is a rawer, less polished version of Chrome. The UI is mostly identical, with only a few very minor visual differences...The most readily evident difference is the logo, which sheds the Google colors in favor of a subdued blue design"</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.atitle=Building+Google+Chrome%3A+A+first+look&amp;rft.jtitle=Fatal+Exception&amp;rft.aulast=McAllister&amp;rft.aufirst=Neil&amp;rft.au=McAllister%2C%26%2332%3BNeil&amp;rft.date=2008-09-11&amp;rft.pub=InfoWorld&amp;rft_id=http%3A%2F%2Fweblog.infoworld.com%2Ffatalexception%2Farchives%2F2008%2F09%2Fbuilding_google.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-mccloud-10"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-mccloud_10-0">^</A></B> <SPAN class="citation web">Scott McCloud (2008-09-01). "<A href="http://smccloud.livejournal.com/15488.html" class="external text" rel="nofollow">Surprise!</A>". <I><A href="http://en.wikipedia.org/wiki/Google_Blogoscoped" title="Google Blogoscoped">Google Blogoscoped</A></I><SPAN class="printonly">. <A href="http://smccloud.livejournal.com/15488.html" class="external free" rel="nofollow">http://smccloud.livejournal.com/15488.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-01</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Surprise%21&amp;rft.atitle=%5B%5BGoogle+Blogoscoped%5D%5D&amp;rft.aulast=Scott+McCloud&amp;rft.au=Scott+McCloud&amp;rft.date=2008-09-01&amp;rft_id=http%3A%2F%2Fsmccloud.livejournal.com%2F15488.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-lenssen-11"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-lenssen_11-0">^</A></B> <SPAN class="citation web">Philipp Lenssen (2008-09-01). "<A href="http://blogoscoped.com/archive/2008-09-01-n47.html" class="external text" rel="nofollow">Google Chrome, Google's Browser Project</A>"<SPAN class="printonly">. <A href="http://blogoscoped.com/archive/2008-09-01-n47.html" class="external free" rel="nofollow">http://blogoscoped.com/archive/2008-09-01-n47.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-01</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome%2C+Google%27s+Browser+Project&amp;rft.atitle=&amp;rft.aulast=Philipp+Lenssen&amp;rft.au=Philipp+Lenssen&amp;rft.date=2008-09-01&amp;rft_id=http%3A%2F%2Fblogoscoped.com%2Farchive%2F2008-09-01-n47.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-comic-12"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-comic_12-0">^</A></B> <SPAN class="citation web">Philipp Lenssen (2008-09-01). "<A href="http://blogoscoped.com/google-chrome/" class="external text" rel="nofollow">Google on Google Chrome - comic book</A>". <I><A href="http://en.wikipedia.org/wiki/Google_Blogoscoped" title="Google Blogoscoped">Google Blogoscoped</A></I><SPAN class="printonly">. <A href="http://blogoscoped.com/google-chrome/" class="external free" rel="nofollow">http://blogoscoped.com/google-chrome/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-01</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+on+Google+Chrome+-+comic+book&amp;rft.atitle=%5B%5BGoogle+Blogoscoped%5D%5D&amp;rft.aulast=Philipp+Lenssen&amp;rft.au=Philipp+Lenssen&amp;rft.date=2008-09-01&amp;rft_id=http%3A%2F%2Fblogoscoped.com%2Fgoogle-chrome%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-chrome-comic-13">^ <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-0"><SUP><I><B>a</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-1"><SUP><I><B>b</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-2"><SUP><I><B>c</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-3"><SUP><I><B>d</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-4"><SUP><I><B>e</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-5"><SUP><I><B>f</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-6"><SUP><I><B>g</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-7"><SUP><I><B>h</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-8"><SUP><I><B>i</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-9"><SUP><I><B>j</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-10"><SUP><I><B>k</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-11"><SUP><I><B>l</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-12"><SUP><I><B>m</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-13"><SUP><I><B>n</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-comic_13-14"><SUP><I><B>o</B></I></SUP></A> <SPAN class="citation web">"<A href="http://www.google.com/googlebooks/chrome/" class="external text" rel="nofollow">Google Chrome</A>". <I><A href="http://en.wikipedia.org/wiki/Google_Book_Search" title="Google Book Search">Google Book Search</A></I>. 2008-09-01<SPAN class="printonly">. <A href="http://www.google.com/googlebooks/chrome/" class="external free" rel="nofollow">http://www.google.com/googlebooks/chrome/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-02</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome&amp;rft.atitle=%5B%5BGoogle+Book+Search%5D%5D&amp;rft.date=2008-09-01&amp;rft_id=http%3A%2F%2Fwww.google.com%2Fgooglebooks%2Fchrome%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-releasedate-14">^ <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-releasedate_14-0"><SUP><I><B>a</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-releasedate_14-1"><SUP><I><B>b</B></I></SUP></A> <SPAN class="citation web">Pichai, Sundar; Upson, Linus (2008-09-01). "<A href="http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html" class="external text" rel="nofollow">A fresh take on the browser</A>". <I>Google Blog</I><SPAN class="printonly">. <A href="http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html" class="external free" rel="nofollow">http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-01</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=A+fresh+take+on+the+browser&amp;rft.atitle=Google+Blog&amp;rft.aulast=Pichai%2C+Sundar&amp;rft.au=Pichai%2C+Sundar&amp;rft.au=Upson%2C+Linus&amp;rft.date=2008-09-01&amp;rft_id=http%3A%2F%2Fgoogleblog.blogspot.com%2F2008%2F09%2Ffresh-take-on-browser.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-15"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-15">^</A></B> <SPAN class="citation web">"<A href="http://www.doeswhat.com/2008/09/02/it-was-when-not-if-google-chrome/" class="external text" rel="nofollow">It was when not if... Google Chrome</A>". September 2008<SPAN class="printonly">. <A href="http://www.doeswhat.com/2008/09/02/it-was-when-not-if-google-chrome/" class="external free" rel="nofollow">http://www.doeswhat.com/2008/09/02/it-was-when-not-if-google-chrome/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-02</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=It+was+when+not+if...+Google+Chrome&amp;rft.atitle=&amp;rft.date=September+2008&amp;rft_id=http%3A%2F%2Fwww.doeswhat.com%2F2008%2F09%2F02%2Fit-was-when-not-if-google-chrome%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-cnet-16"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-cnet_16-0">^</A></B> <SPAN class="citation web">"<A href="http://news.cnet.com/8301-17939_109-10030025-2.html" class="external text" rel="nofollow">Google Chrome update: First screenshot, and live-blog alert</A>". <A href="http://en.wikipedia.org/wiki/CNet" title="CNet" class="mw-redirect">CNet</A>. 2008-09-01<SPAN class="printonly">. <A href="http://news.cnet.com/8301-17939_109-10030025-2.html" class="external free" rel="nofollow">http://news.cnet.com/8301-17939_109-10030025-2.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-02</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+update%3A+First+screenshot%2C+and+live-blog+alert&amp;rft.atitle=&amp;rft.date=2008-09-01&amp;rft.pub=%5B%5BCNet%5D%5D&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2F8301-17939_109-10030025-2.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-CBC-17"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-CBC_17-0">^</A></B> <SPAN class="citation web">"<A href="http://www.cbc.ca/technology/story/2008/09/01/google-browser.html" class="external text" rel="nofollow">Google launches Chrome web browser</A>". The Canadian Press. September 2, 2008<SPAN class="printonly">. <A href="http://www.cbc.ca/technology/story/2008/09/01/google-browser.html" class="external free" rel="nofollow">http://www.cbc.ca/technology/story/2008/09/01/google-browser.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-02</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+launches+Chrome+web+browser&amp;rft.atitle=&amp;rft.date=September+2%2C+2008&amp;rft.pub=The+Canadian+Press&amp;rft_id=http%3A%2F%2Fwww.cbc.ca%2Ftechnology%2Fstory%2F2008%2F09%2F01%2Fgoogle-browser.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-18"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-18">^</A></B> <SPAN class="citation web">"<A href="http://www.doeswhat.com/2008/11/22/come-on-google-chrome-for-mac/" class="external text" rel="nofollow">Come on Google... Chrome for Mac?</A>". November 2008<SPAN class="printonly">. <A href="http://www.doeswhat.com/2008/11/22/come-on-google-chrome-for-mac/" class="external free" rel="nofollow">http://www.doeswhat.com/2008/11/22/come-on-google-chrome-for-mac/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-11-22</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Come+on+Google...+Chrome+for+Mac%3F&amp;rft.atitle=&amp;rft.date=November+2008&amp;rft_id=http%3A%2F%2Fwww.doeswhat.com%2F2008%2F11%2F22%2Fcome-on-google-chrome-for-mac%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-19"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-19">^</A></B> <SPAN class="citation news">Gruener, Wolfgang (2009-01-03). "<A href="http://www.tgdaily.com/content/view/40575/113/" class="external text" rel="nofollow">Google Chrome crosses 1% market share again</A>". Chicago (IL): TG Daily<SPAN class="printonly">. <A href="http://www.tgdaily.com/content/view/40575/113/" class="external free" rel="nofollow">http://www.tgdaily.com/content/view/40575/113/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-01-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+crosses+1%25+market+share+again&amp;rft.atitle=&amp;rft.aulast=Gruener&amp;rft.aufirst=Wolfgang&amp;rft.au=Gruener%2C%26%2332%3BWolfgang&amp;rft.date=2009-01-03&amp;rft.place=Chicago+%28IL%29&amp;rft.pub=TG+Daily&amp;rft_id=http%3A%2F%2Fwww.tgdaily.com%2Fcontent%2Fview%2F40575%2F113%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-20"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-20">^</A></B> <SPAN class="citation web">"<A href="http://code.google.com/p/chromium/wiki/LinuxBuildInstructions" class="external text" rel="nofollow">Build instructions for Linux</A>". 2008<SPAN class="printonly">. <A href="http://code.google.com/p/chromium/wiki/LinuxBuildInstructions" class="external free" rel="nofollow">http://code.google.com/p/chromium/wiki/LinuxBuildInstructions</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-12-17</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Build+instructions+for+Linux&amp;rft.atitle=&amp;rft.date=2008&amp;rft_id=http%3A%2F%2Fcode.google.com%2Fp%2Fchromium%2Fwiki%2FLinuxBuildInstructions&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-21"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-21">^</A></B> <SPAN class="citation web">Shankland, Stephen (12 November 2008). "<A href="http://news.cnet.com/8301-17939_109-10094939-2.html" class="external text" rel="nofollow">Google's Chrome now works on Linux, crudely</A>"<SPAN class="printonly">. <A href="http://news.cnet.com/8301-17939_109-10094939-2.html" class="external free" rel="nofollow">http://news.cnet.com/8301-17939_109-10094939-2.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-12-17</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google%27s+Chrome+now+works+on+Linux%2C+crudely&amp;rft.atitle=&amp;rft.aulast=Shankland&amp;rft.aufirst=Stephen&amp;rft.au=Shankland%2C%26%2332%3BStephen&amp;rft.date=12+November+2008&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2F8301-17939_109-10094939-2.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-22"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-22">^</A></B> <SPAN class="citation web">Arimbrathodiyil, Praveen (12 December 2008). "<A href="http://www.j4v4m4n.in/2008/12/12/google-chrome-on-gnulinux/" class="external text" rel="nofollow">Google Chrome on GNU/Linux</A>"<SPAN class="printonly">. <A href="http://www.j4v4m4n.in/2008/12/12/google-chrome-on-gnulinux/" class="external free" rel="nofollow">http://www.j4v4m4n.in/2008/12/12/google-chrome-on-gnulinux/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-12-17</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+on+GNU%2FLinux&amp;rft.atitle=&amp;rft.aulast=Arimbrathodiyil&amp;rft.aufirst=Praveen&amp;rft.au=Arimbrathodiyil%2C%26%2332%3BPraveen&amp;rft.date=12+December+2008&amp;rft_id=http%3A%2F%2Fwww.j4v4m4n.in%2F2008%2F12%2F12%2Fgoogle-chrome-on-gnulinux%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-ChromeMacDeadline-23"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-ChromeMacDeadline_23-0">^</A></B> <SPAN class="citation news">Shankland, Stephen (2009-01-09). "<A href="http://news.cnet.com/chrome-gets-mac-deadline-extensions-foundation/" class="external text" rel="nofollow">Chrome gets Mac deadline, extensions foundation</A>". <A href="http://en.wikipedia.org/wiki/CNET" title="CNET" class="mw-redirect">CNET</A><SPAN class="printonly">. <A href="http://news.cnet.com/chrome-gets-mac-deadline-extensions-foundation/" class="external free" rel="nofollow">http://news.cnet.com/chrome-gets-mac-deadline-extensions-foundation/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-01-13</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Chrome+gets+Mac+deadline%2C+extensions+foundation&amp;rft.atitle=&amp;rft.aulast=Shankland&amp;rft.aufirst=Stephen&amp;rft.au=Shankland%2C%26%2332%3BStephen&amp;rft.date=2009-01-09&amp;rft.pub=%5B%5BCNET%5D%5D&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2Fchrome-gets-mac-deadline-extensions-foundation%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-24"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-24">^</A></B> <A href="http://build.chromium.org/buildbot/snapshots/chromium-rel-linux/" class="external text" rel="nofollow">Chromium Linux builds (.deb files)</A></LI>
<LI id="cite_note-25"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-25">^</A></B> <SPAN class="citation web">"<A href="http://dev.chromium.org/getting-involved/dev-channel" class="external text" rel="nofollow">Early Access Release Channels</A>"<SPAN class="printonly">. <A href="http://dev.chromium.org/getting-involved/dev-channel" class="external free" rel="nofollow">http://dev.chromium.org/getting-involved/dev-channel</A></SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Early+Access+Release+Channels&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fdev.chromium.org%2Fgetting-involved%2Fdev-channel&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-26"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-26">^</A></B> <SPAN class="citation web">"<A href="http://blog.chromium.org/2009/06/danger-mac-and-linux-builds-available.html" class="external text" rel="nofollow">Danger: Mac and Linux builds available</A>"<SPAN class="printonly">. <A href="http://blog.chromium.org/2009/06/danger-mac-and-linux-builds-available.html" class="external free" rel="nofollow">http://blog.chromium.org/2009/06/danger-mac-and-linux-builds-available.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-06-09</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Danger%3A+Mac+and+Linux+builds+available&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fblog.chromium.org%2F2009%2F06%2Fdanger-mac-and-linux-builds-available.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-27"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-27">^</A></B> <A href="http://www.macworld.co.uk/digitallifestyle/news/index.cfm?RSS&NewsID=27386" class="external text" rel="nofollow">Chrome for Mac browser by Christmas? - Macworld UK</A></LI>
<LI id="cite_note-28"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-28">^</A></B> <SPAN class="citation web">"<A href="http://www.pcworld.com/businesscenter/article/183366/google_nears_release_of_chrome_web_browser_beta_for_mac.html" class="external text" rel="nofollow">Google Nears Release of Chrome Web Browser Beta for Mac (PC World - Tony Bradley)</A>"<SPAN class="printonly">. <A href="http://www.pcworld.com/businesscenter/article/183366/google_nears_release_of_chrome_web_browser_beta_for_mac.html" class="external free" rel="nofollow">http://www.pcworld.com/businesscenter/article/183366/google_nears_release_of_chrome_web_browser_beta_for_mac.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-11-30</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Nears+Release+of+Chrome+Web+Browser+Beta+for+Mac+%28PC+World+-+Tony+Bradley%29&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fwww.pcworld.com%2Fbusinesscenter%2Farticle%2F183366%2Fgoogle_nears_release_of_chrome_web_browser_beta_for_mac.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-29"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-29">^</A></B> <A href="http://googlechromereleases.blogspot.com/2009/12/beta-update-linux-mac-and-windows.html" class="external text" rel="nofollow">Beta Update: Linux, Mac, and Windows</A></LI>
<LI id="cite_note-30"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-30">^</A></B> <A href="http://catonmat.net/blog/code-reuse-in-google-chrome-browser/" class="external text" rel="nofollow">Code reuse in Google Chrome Browser</A></LI>
<LI id="cite_note-acid-31">^ <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-acid_31-0"><SUP><I><B>a</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-acid_31-1"><SUP><I><B>b</B></I></SUP></A> Chrome previously scored 78 under versions 0.3 and earlier. <SPAN class="citation news">Hoffman, Harrison (2008-09-02). "<A href="http://news.cnet.com/8301-17939_109-10030962-2.html" class="external text" rel="nofollow">Chrome tops IE, Firefox in Acid3 test</A>". CNET News<SPAN class="printonly">. <A href="http://news.cnet.com/8301-17939_109-10030962-2.html" class="external free" rel="nofollow">http://news.cnet.com/8301-17939_109-10030962-2.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Chrome+tops+IE%2C+Firefox+in+Acid3+test&amp;rft.atitle=&amp;rft.aulast=Hoffman&amp;rft.aufirst=Harrison&amp;rft.au=Hoffman%2C%26%2332%3BHarrison&amp;rft.date=2008-09-02&amp;rft.pub=CNET+News&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2F8301-17939_109-10030962-2.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-32"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-32">^</A></B> <A href="http://news.cnet.com/8301-17939_109-10030962-2.html" class="external text" rel="nofollow">Chrome tops IE, Firefox in Acid3 test - cnet</A></LI>
<LI id="cite_note-33"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-33">^</A></B> <A href="http://code.google.com/p/chromium/issues/detail?id=231#c116" class="external text" rel="nofollow">Google Code: Issue 231 - Acid test 3 fails on chrome - comment 116</A></LI>
<LI id="cite_note-34"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-34">^</A></B> <A href="http://code.google.com/p/chromium/issues/detail?id=231#c135" class="external text" rel="nofollow">Google Code: Issue 231 - Acid test 3 fails on chrome - comment 135</A></LI>
<LI id="cite_note-35"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-35">^</A></B> <SPAN class="citation web">Pichai, Sundar (2009-07-07). "<A href="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html" class="external text" rel="nofollow">Official Google Blog: Introducing the Google Chrome OS</A>". <A href="http://en.wikipedia.org/wiki/Google" title="Google">Googleblog</A>.<A href="http://en.wikipedia.org/wiki/Blogspot.com" title="Blogspot.com" class="mw-redirect">blogspot.com</A><SPAN class="printonly">. <A href="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html" class="external free" rel="nofollow">http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-08-07</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Official+Google+Blog%3A+Introducing+the+Google+Chrome+OS&amp;rft.atitle=&amp;rft.aulast=Pichai&amp;rft.aufirst=Sundar&amp;rft.au=Pichai%2C%26%2332%3BSundar&amp;rft.date=2009-07-07&amp;rft.pub=%5B%5BGoogle%5D%5Dblog.%5B%5Bblogspot.com%5D%5D&amp;rft_id=http%3A%2F%2Fgoogleblog.blogspot.com%2F2009%2F07%2Fintroducing-google-chrome-os.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-chrome.blogspot.com-36">^ <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome.blogspot.com_36-0"><SUP><I><B>a</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome.blogspot.com_36-1"><SUP><I><B>b</B></I></SUP></A> <A href="http://chrome.blogspot.com/2009/05/speedier-google-chrome-for-all-users.html" class="external text" rel="nofollow">A Speedier Google Chrome for all users - Google Chrome Blog</A></LI>
<LI id="cite_note-37"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-37">^</A></B> <SPAN class="citation web">Laforge, Anthony (2009-09-15). "<A href="http://googleblog.blogspot.com/2009/09/google-chrome-after-year-sporting-new.html" class="external text" rel="nofollow">Google Chrome after a year: Sporting a new stable release</A>". <A href="http://en.wikipedia.org/wiki/Google" title="Google">Googleblog</A>.<A href="http://en.wikipedia.org/wiki/Blogspot.com" title="Blogspot.com" class="mw-redirect">blogspot.com</A><SPAN class="printonly">. <A href="http://googleblog.blogspot.com/2009/09/google-chrome-after-year-sporting-new.html" class="external free" rel="nofollow">http://googleblog.blogspot.com/2009/09/google-chrome-after-year-sporting-new.html</A></SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+after+a+year%3A+Sporting+a+new+stable+release&amp;rft.atitle=&amp;rft.aulast=Laforge&amp;rft.aufirst=Anthony&amp;rft.au=Laforge%2C%26%2332%3BAnthony&amp;rft.date=2009-09-15&amp;rft.pub=%5B%5BGoogle%5D%5Dblog.%5B%5Bblogspot.com%5D%5D&amp;rft_id=http%3A%2F%2Fgoogleblog.blogspot.com%2F2009%2F09%2Fgoogle-chrome-after-year-sporting-new.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-chrome3-38"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome3_38-0">^</A></B> <SPAN class="citation"><A href="http://www.softsailor.com/news/3787-3787.html" class="external text" rel="nofollow"><I>Google Chrome to support HTML 5 video</I></A>, SoftSailor, 2009-05-28<SPAN class="printonly">, <A href="http://www.softsailor.com/news/3787-3787.html" class="external free" rel="nofollow">http://www.softsailor.com/news/3787-3787.html</A></SPAN><SPAN class="reference-accessdate">, retrieved 2009-10-11</SPAN></SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=book&amp;rft.btitle=Google+Chrome+to+support+HTML+5+video&amp;rft.date=2009-05-28&amp;rft.pub=SoftSailor&amp;rft_id=http%3A%2F%2Fwww.softsailor.com%2Fnews%2F3787-3787.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-chrome3-video-cnet-39"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome3-video-cnet_39-0">^</A></B> <SPAN class="citation" id="CITEREFStephen_Shankland2009">Stephen Shankland (2009-05-28), <A href="http://news.cnet.com/8301-17939_109-10250958-2.html" class="external text" rel="nofollow"><I>Google Chrome gets HTML video support</I></A>, cnet news<SPAN class="printonly">, <A href="http://news.cnet.com/8301-17939_109-10250958-2.html" class="external free" rel="nofollow">http://news.cnet.com/8301-17939_109-10250958-2.html</A></SPAN><SPAN class="reference-accessdate">, retrieved 2009-10-11</SPAN></SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=book&amp;rft.btitle=Google+Chrome+gets+HTML+video+support&amp;rft.aulast=Stephen+Shankland&amp;rft.au=Stephen+Shankland&amp;rft.date=2009-05-28&amp;rft.pub=cnet+news&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2F8301-17939_109-10250958-2.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-chrome3-audio-element-40"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome3-audio-element_40-0">^</A></B> <SPAN class="citation" id="CITEREFMark_Boas2009">Mark Boas (2009-07-29), <A href="http://html5doctor.com/native-audio-in-the-browser/" class="external text" rel="nofollow"><I>Native Audio in the browser</I></A>, html 5 doctor<SPAN class="printonly">, <A href="http://html5doctor.com/native-audio-in-the-browser/" class="external free" rel="nofollow">http://html5doctor.com/native-audio-in-the-browser/</A></SPAN><SPAN class="reference-accessdate">, retrieved 2009-10-11</SPAN></SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=book&amp;rft.btitle=Native+Audio+in+the+browser&amp;rft.aulast=Mark+Boas&amp;rft.au=Mark+Boas&amp;rft.date=2009-07-29&amp;rft.pub=html+5+doctor&amp;rft_id=http%3A%2F%2Fhtml5doctor.com%2Fnative-audio-in-the-browser%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-chrome3-features-41"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome3-features_41-0">^</A></B> <SPAN class="citation" id="CITEREFPeter_Davison2009">Peter Davison (2009-09-22), <A href="http://www.legendscrolls.co.uk/webstandards/googlechrome" class="external text" rel="nofollow"><I>Web Browsers And Packages - Google Chrome</I></A>, Legend Scrolls<SPAN class="printonly">, <A href="http://www.legendscrolls.co.uk/webstandards/googlechrome" class="external free" rel="nofollow">http://www.legendscrolls.co.uk/webstandards/googlechrome</A></SPAN><SPAN class="reference-accessdate">, retrieved 2009-10-11</SPAN></SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=book&amp;rft.btitle=Web+Browsers+And+Packages+-+Google+Chrome&amp;rft.aulast=Peter+Davison&amp;rft.au=Peter+Davison&amp;rft.date=2009-09-22&amp;rft.pub=Legend+Scrolls&amp;rft_id=http%3A%2F%2Fwww.legendscrolls.co.uk%2Fwebstandards%2Fgooglechrome&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-42"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-42">^</A></B> <A href="http://dev.chromium.org/getting-involved/dev-channel/release-notes/" class="external free" rel="nofollow">http://dev.chromium.org/getting-involved/dev-channel/release-notes/</A></LI>
<LI id="cite_note-43"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-43">^</A></B> <SPAN class="languageicon" style="font-size:0.95em; font-weight:bold; color:#555;">(English)</SPAN><SPAN class="citation web">"<A href="http://code.google.com/p/v8/source/browse/trunk/ChangeLog" class="external text" rel="nofollow">ChangeLog - v8</A>"<SPAN class="printonly">. <A href="http://code.google.com/p/v8/source/browse/trunk/ChangeLog" class="external free" rel="nofollow">http://code.google.com/p/v8/source/browse/trunk/ChangeLog</A></SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=ChangeLog+-+v8&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fcode.google.com%2Fp%2Fv8%2Fsource%2Fbrowse%2Ftrunk%2FChangeLog&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-44"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-44">^</A></B> <A href="http://www.glosonblog.com/google-chromes-unique-features/" class="external text" rel="nofollow">Google Chrome’s Unique Features</A>, the most visible user interface changes, with screen-shots.</LI>
<LI id="cite_note-45"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-45">^</A></B> <A href="http://news.cnet.com/8301-1001_3-10030888-92.html" class="external text" rel="nofollow">Speed test: Google Chrome beats Firefox, IE, Safari - Business Tech</A>, <A href="http://en.wikipedia.org/wiki/CNET_News" title="CNET News" class="mw-redirect">CNET News</A></LI>
<LI id="cite_note-46"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-46">^</A></B> <A href="http://lifehacker.com/5286869/lifehacker-speed-tests-safari-4-chrome-2-and-more" class="external text" rel="nofollow">Lifehacker Speed Tests: Safari 4, Chrome 2, and More - Browsers</A>, <A href="http://en.wikipedia.org/wiki/Lifehacker" title="Lifehacker">Lifehacker</A></LI>
<LI id="cite_note-47"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-47">^</A></B> <A href="http://www.techstroke.com/12-unique-features-of-chrome-fast-and-powerful-web-browser-from-google.html" class="external text" rel="nofollow">12 Unique features of Google Chrome</A>, TechStroke</LI>
<LI id="cite_note-48"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-48">^</A></B> <A href="http://news.cnet.com/8301-17939_109-9944662-2.html" class="external text" rel="nofollow">The future of the Firefox address bar, CNET News</A>, Mozilla announces plans to merge address bar and search bar in a CNET interview. <I>"Ultimately, he said, the two entry fields will merge into one. How the data from your browsing history and from a Web search engine will merge has yet to be resolved."</I></LI>
<LI id="cite_note-49"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-49">^</A></B> <SPAN class="citation web">Chung, Marc (2008-09-05). "<A href="http://blog.marcchung.com/2008/09/chromes-process-model-explained.html" class="external text" rel="nofollow">chromes-process model explained</A>"<SPAN class="printonly">. <A href="http://blog.marcchung.com/2008/09/chromes-process-model-explained.html" class="external free" rel="nofollow">http://blog.marcchung.com/2008/09/chromes-process-model-explained.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-10</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=chromes-process+model+explained&amp;rft.atitle=&amp;rft.aulast=Chung&amp;rft.aufirst=Marc&amp;rft.au=Chung%2C%26%2332%3BMarc&amp;rft.date=2008-09-05&amp;rft_id=http%3A%2F%2Fblog.marcchung.com%2F2008%2F09%2Fchromes-process-model-explained.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-50"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-50">^</A></B> <SPAN class="citation web">Google (2008-09-01). "<A href="http://www.gamesforthebrain.com/google-chrome/26" class="external text" rel="nofollow">Google Chrome</A>"<SPAN class="printonly">. <A href="http://www.gamesforthebrain.com/google-chrome/26" class="external free" rel="nofollow">http://www.gamesforthebrain.com/google-chrome/26</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome&amp;rft.atitle=&amp;rft.aulast=Google&amp;rft.au=Google&amp;rft.date=2008-09-01&amp;rft_id=http%3A%2F%2Fwww.gamesforthebrain.com%2Fgoogle-chrome%2F26&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN><SUP class="noprint Inline-Template"><SPAN title="&nbsp;since May 2009" style="white-space: nowrap;">[<I><A href="http://en.wikipedia.org/wiki/Wikipedia:Linkrot" title="Wikipedia:Linkrot">dead link</A></I>]</SPAN></SUP></LI>
<LI id="cite_note-sec-51"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-sec_51-0">^</A></B> <SPAN class="citation web">Barth, Adam; Collin Jackson, Charles Reis, and The Google Chrome Team. "<A href="http://crypto.stanford.edu/websec/chromium/chromium-security-architecture.pdf" class="external text" rel="nofollow">The Security Architecture of the Chromium Browser</A>" (PDF). Stanford Security Laboratory<SPAN class="printonly">. <A href="http://crypto.stanford.edu/websec/chromium/chromium-security-architecture.pdf" class="external free" rel="nofollow">http://crypto.stanford.edu/websec/chromium/chromium-security-architecture.pdf</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-11</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=The+Security+Architecture+of+the+Chromium+Browser&amp;rft.atitle=&amp;rft.aulast=Barth&amp;rft.aufirst=Adam&amp;rft.au=Barth%2C%26%2332%3BAdam&amp;rft.au=Collin+Jackson%2C+Charles+Reis%2C+and+The+Google+Chrome+Team&amp;rft.pub=Stanford+Security+Laboratory&amp;rft_id=http%3A%2F%2Fcrypto.stanford.edu%2Fwebsec%2Fchromium%2Fchromium-security-architecture.pdf&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-52"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-52">^</A></B> <SPAN class="citation web">"<A href="http://wearechrome.com/index.php?topic=15.0" class="external text" rel="nofollow">Chrome Supports NPAPI (Netscape Plugin Application Programming Interface)</A>". Wearechrome.com<SPAN class="printonly">. <A href="http://wearechrome.com/index.php?topic=15.0" class="external free" rel="nofollow">http://wearechrome.com/index.php?topic=15.0</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Chrome+Supports+NPAPI+%28Netscape+Plugin+Application+Programming+Interface%29&amp;rft.atitle=&amp;rft.pub=Wearechrome.com&amp;rft_id=http%3A%2F%2Fwearechrome.com%2Findex.php%3Ftopic%3D15.0&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-chrome-faq-activex-53">^ <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-faq-activex_53-0"><SUP><I><B>a</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-faq-activex_53-1"><SUP><I><B>b</B></I></SUP></A> <A href="http://www.google.com/chrome/intl/en/webmasters-faq.html#activex" class="external text" rel="nofollow">Google Chrome FAQ for web developers</A></LI>
<LI id="cite_note-54"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-54">^</A></B> <SPAN class="citation web">"<A href="http://java.com/en/download/chrome.jsp" class="external text" rel="nofollow">Java and Google Chrome</A>". Java.com<SPAN class="printonly">. <A href="http://java.com/en/download/chrome.jsp" class="external free" rel="nofollow">http://java.com/en/download/chrome.jsp</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-12-11</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Java+and+Google+Chrome&amp;rft.atitle=&amp;rft.pub=Java.com&amp;rft_id=http%3A%2F%2Fjava.com%2Fen%2Fdownload%2Fchrome.jsp&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-55"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-55">^</A></B> <SPAN class="citation web">"<A href="http://www.google.com/support/chrome/bin/answer.py?answer=95464&hl=en" class="external text" rel="nofollow">Explore Google Chrome Features: Incognito Mode</A>". 2008-09-02<SPAN class="printonly">. <A href="http://www.google.com/support/chrome/bin/answer.py?answer=95464&hl=en" class="external free" rel="nofollow">http://www.google.com/support/chrome/bin/answer.py?answer=95464&amp;hl=en</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-04</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Explore+Google+Chrome+Features%3A+Incognito+Mode&amp;rft.atitle=&amp;rft.date=2008-09-02&amp;rft_id=http%3A%2F%2Fwww.google.com%2Fsupport%2Fchrome%2Fbin%2Fanswer.py%3Fanswer%3D95464%26hl%3Den&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-56"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-56">^</A></B> <SPAN class="citation web">Rishi Narang (EvilFingers Community - www.EvilFingers.com) (2008-09-03). "<A href="http://evilfingers.com/advisory/Google_Chrome_Browser_0.2.149.27_in_chrome_dll.php" class="external text" rel="nofollow">Google Chrome Browser 0.2.149.27 malicious link DoS Vulnerability</A>"<SPAN class="printonly">. <A href="http://evilfingers.com/advisory/Google_Chrome_Browser_0.2.149.27_in_chrome_dll.php" class="external free" rel="nofollow">http://evilfingers.com/advisory/Google_Chrome_Browser_0.2.149.27_in_chrome_dll.php</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+Browser+0.2.149.27+malicious+link+DoS+Vulnerability&amp;rft.atitle=&amp;rft.aulast=Rishi+Narang+%28EvilFingers+Community+-+www.EvilFingers.com%29&amp;rft.au=Rishi+Narang+%28EvilFingers+Community+-+www.EvilFingers.com%29&amp;rft.date=2008-09-03&amp;rft_id=http%3A%2F%2Fevilfingers.com%2Fadvisory%2FGoogle_Chrome_Browser_0.2.149.27_in_chrome_dll.php&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-crash-57"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-crash_57-0">^</A></B> <SPAN class="citation web">"<A href="http://www.tgdaily.com/content/view/39170/108/" class="external text" rel="nofollow">How to crash Chrome. Again and again.</A>". TGDaily.com. 2008-09-03<SPAN class="printonly">. <A href="http://www.tgdaily.com/content/view/39170/108/" class="external free" rel="nofollow">http://www.tgdaily.com/content/view/39170/108/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-06</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=How+to+crash+Chrome.+Again+and+again.&amp;rft.atitle=&amp;rft.date=2008-09-03&amp;rft.pub=TGDaily.com&amp;rft_id=http%3A%2F%2Fwww.tgdaily.com%2Fcontent%2Fview%2F39170%2F108%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-58"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-58">^</A></B> <SPAN class="citation web">"<A href="http://googlechromereleases.blogspot.com/2008/09/beta-release-0214929.html" class="external text" rel="nofollow">Beta release: 0.2.149.29</A>". 2008-09-08<SPAN class="printonly">. <A href="http://googlechromereleases.blogspot.com/2008/09/beta-release-0214929.html" class="external free" rel="nofollow">http://googlechromereleases.blogspot.com/2008/09/beta-release-0214929.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-09</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Beta+release%3A+0.2.149.29&amp;rft.atitle=&amp;rft.date=2008-09-08&amp;rft_id=http%3A%2F%2Fgooglechromereleases.blogspot.com%2F2008%2F09%2Fbeta-release-0214929.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-59"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-59">^</A></B> <SPAN class="citation web">"<A href="http://www.theregister.co.uk/2009/06/24/chrome_security_update/" class="external text" rel="nofollow">Chrome update plugs hush-hush browser hole</A>". 2009-06-24<SPAN class="printonly">. <A href="http://www.theregister.co.uk/2009/06/24/chrome_security_update/" class="external free" rel="nofollow">http://www.theregister.co.uk/2009/06/24/chrome_security_update/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-07-07</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Chrome+update+plugs+hush-hush+browser+hole&amp;rft.atitle=&amp;rft.date=2009-06-24&amp;rft_id=http%3A%2F%2Fwww.theregister.co.uk%2F2009%2F06%2F24%2Fchrome_security_update%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-60"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-60">^</A></B> <SPAN class="citation web">"<A href="http://code.google.com/apis/v8/run.html" class="external text" rel="nofollow">V8 Benchmark suite</A>". <I>Google code</I><SPAN class="printonly">. <A href="http://code.google.com/apis/v8/run.html" class="external free" rel="nofollow">http://code.google.com/apis/v8/run.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=V8+Benchmark+suite&amp;rft.atitle=Google+code&amp;rft_id=http%3A%2F%2Fcode.google.com%2Fapis%2Fv8%2Frun.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-61"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-61">^</A></B> <SPAN class="citation web">Rupert Goodwins (2008-09-02). "<A href="http://community.zdnet.co.uk/blog/0,1000000567,10009139o-2000331777b,00.htm" class="external text" rel="nofollow">Google Chrome - first benchmarks. Summary: wow.</A>"<SPAN class="printonly">. <A href="http://community.zdnet.co.uk/blog/0,1000000567,10009139o-2000331777b,00.htm" class="external free" rel="nofollow">http://community.zdnet.co.uk/blog/0,1000000567,10009139o-2000331777b,00.htm</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+-+first+benchmarks.+Summary%3A+wow.&amp;rft.atitle=&amp;rft.aulast=Rupert+Goodwins&amp;rft.au=Rupert+Goodwins&amp;rft.date=2008-09-02&amp;rft_id=http%3A%2F%2Fcommunity.zdnet.co.uk%2Fblog%2F0%2C1000000567%2C10009139o-2000331777b%2C00.htm&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-62"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-62">^</A></B> <SPAN class="citation web">"<A href="http://jrm.cc/articles/717-google-chrome-javascript-benchmarks" class="external text" rel="nofollow">Google Chrome Javascript Benchmarks</A>". 2008-09-02<SPAN class="printonly">. <A href="http://jrm.cc/articles/717-google-chrome-javascript-benchmarks" class="external free" rel="nofollow">http://jrm.cc/articles/717-google-chrome-javascript-benchmarks</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+Javascript+Benchmarks&amp;rft.atitle=&amp;rft.date=2008-09-02&amp;rft_id=http%3A%2F%2Fjrm.cc%2Farticles%2F717-google-chrome-javascript-benchmarks&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-63"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-63">^</A></B> <SPAN class="citation web">Adrian Kingsley-Hughes (2008-09-02). "<A href="http://blogs.zdnet.com/hardware/?p=2507" class="external text" rel="nofollow">Google Chrome is insanely fast ... faster than Firefox 3.0</A>"<SPAN class="printonly">. <A href="http://blogs.zdnet.com/hardware/?p=2507" class="external free" rel="nofollow">http://blogs.zdnet.com/hardware/?p=2507</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+is+insanely+fast+...+faster+than+Firefox+3.0&amp;rft.atitle=&amp;rft.aulast=Adrian+Kingsley-Hughes&amp;rft.au=Adrian+Kingsley-Hughes&amp;rft.date=2008-09-02&amp;rft_id=http%3A%2F%2Fblogs.zdnet.com%2Fhardware%2F%3Fp%3D2507&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-64"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-64">^</A></B> <SPAN class="citation web">Stephen Shankland (2008-09-02). "<A href="http://news.cnet.com/8301-1001_3-10030888-92.html" class="external text" rel="nofollow">Speed test: Google Chrome</A>". <I>CNET Business Tech</I><SPAN class="printonly">. <A href="http://news.cnet.com/8301-1001_3-10030888-92.html" class="external free" rel="nofollow">http://news.cnet.com/8301-1001_3-10030888-92.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Speed+test%3A+Google+Chrome&amp;rft.atitle=CNET+Business+Tech&amp;rft.aulast=Stephen+Shankland&amp;rft.au=Stephen+Shankland&amp;rft.date=2008-09-02&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2F8301-1001_3-10030888-92.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-65"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-65">^</A></B> <A href="http://limi.net/articles/google-chrome-benchmarks-and-more" class="external text" rel="nofollow">Chrome: Benchmarks and more</A></LI>
<LI id="cite_note-66"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-66">^</A></B> <A href="http://www.favbrowser.com/safari-4-vs-firefox-3-vs-google-chrome-vs-opera-10-96-vs-internet-explorer-8-7/" class="external text" rel="nofollow">Safari 4 vs. Firefox 3 vs. Google Chrome vs. Opera 10, 9.6 vs. Internet Explorer 8, 7</A></LI>
<LI id="cite_note-67"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-67">^</A></B> <A href="http://news.cnet.com/8301-1001_3-10031278-92.html" class="external text" rel="nofollow">Firefox counters Google's browser speed test - Business Tech</A>, <A href="http://en.wikipedia.org/wiki/CNET_News" title="CNET News" class="mw-redirect">CNET News</A></LI>
<LI id="cite_note-68"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-68">^</A></B> <SPAN class="citation web"><A href="http://en.wikipedia.org/wiki/Brendan_Eich" title="Brendan Eich">Eich, Brendan</A> (2008-09-03). "<A href="http://weblogs.mozillazine.org/roadmap/archives/2008/09/tracemonkey_update.html" class="external text" rel="nofollow">TraceMonkey Update</A>"<SPAN class="printonly">. <A href="http://weblogs.mozillazine.org/roadmap/archives/2008/09/tracemonkey_update.html" class="external free" rel="nofollow">http://weblogs.mozillazine.org/roadmap/archives/2008/09/tracemonkey_update.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=TraceMonkey+Update&amp;rft.atitle=&amp;rft.aulast=Eich&amp;rft.aufirst=Brendan&amp;rft.au=Eich%2C%26%2332%3BBrendan&amp;rft.date=2008-09-03&amp;rft_id=http%3A%2F%2Fweblogs.mozillazine.org%2Froadmap%2Farchives%2F2008%2F09%2Ftracemonkey_update.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-69"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-69">^</A></B> <A href="http://www.builderau.com.au/news/soa/Third-Chrome-beta-another-notch-faster/0,339028227,339292979,00.htm?feed=pt_performance" class="external text" rel="nofollow">Third Chrome beta another notch faster - News</A>, Builder AU</LI>
<LI id="cite_note-70"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-70">^</A></B> <SPAN class="citation web"><A href="http://en.wikipedia.org/wiki/John_Resig" title="John Resig">Resig, John</A> (2008-09-03). "<A href="http://ejohn.org/blog/javascript-performance-rundown/" class="external text" rel="nofollow">JavaScript Performance Rundown</A>"<SPAN class="printonly">. <A href="http://ejohn.org/blog/javascript-performance-rundown/" class="external free" rel="nofollow">http://ejohn.org/blog/javascript-performance-rundown/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-06-09</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=JavaScript+Performance+Rundown&amp;rft.atitle=&amp;rft.aulast=Resig&amp;rft.aufirst=John&amp;rft.au=Resig%2C%26%2332%3BJohn&amp;rft.date=2008-09-03&amp;rft_id=http%3A%2F%2Fejohn.org%2Fblog%2Fjavascript-performance-rundown%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-71"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-71">^</A></B> <A href="http://webkit.org/blog/214/introducing-squirrelfish-extreme/" class="external text" rel="nofollow">WebKit blog: Introducing SquirrelFish Extreme</A></LI>
<LI id="cite_note-72"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-72">^</A></B> <A href="http://summerofjsc.blogspot.com/2008/09/squirrelfish-extreme-has-landed.html" class="external text" rel="nofollow">SquirrelFish Extreme has landed!</A></LI>
<LI id="cite_note-73"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-73">^</A></B> <A href="http://www.builderau.com.au/news/soa/Step-aside-Chrome-for-Squirrelfish-Extreme/0,339028227,339292128,00.htm?feed=pt_performance" class="external text" rel="nofollow">Step aside, Chrome, for Squirrelfish Extreme - News</A>, Builder AU</LI>
<LI id="cite_note-74"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-74">^</A></B> <A href="http://www.satine.org/archives/2008/09/19/squirrelfish-extreme-fastest-javascript-engine-yet/" class="external text" rel="nofollow">SquirrelFish Extreme: Fastest JavaScript Engine Yet</A>, satine.org</LI>
<LI id="cite_note-features-75">^ <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-features_75-0"><SUP><I><B>a</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-features_75-1"><SUP><I><B>b</B></I></SUP></A> <SPAN class="citation web">Preston Gralla (2008-09-03). "<A href="http://blogs.computerworld.com/three_hidden_chrome_features_youll_love" class="external text" rel="nofollow">Three hidden Chrome features you'll love</A>"<SPAN class="printonly">. <A href="http://blogs.computerworld.com/three_hidden_chrome_features_youll_love" class="external free" rel="nofollow">http://blogs.computerworld.com/three_hidden_chrome_features_youll_love</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-16</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Three+hidden+Chrome+features+you%27ll+love&amp;rft.atitle=&amp;rft.aulast=Preston+Gralla&amp;rft.au=Preston+Gralla&amp;rft.date=2008-09-03&amp;rft_id=http%3A%2F%2Fblogs.computerworld.com%2Fthree_hidden_chrome_features_youll_love&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-76"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-76">^</A></B> <SPAN class="citation web">Charlie Reisn (2008-09-11). "<A href="http://blog.chromium.org/2008/09/multi-process-architecture.html" class="external text" rel="nofollow">Multi-process Architecture</A>"<SPAN class="printonly">. <A href="http://blog.chromium.org/2008/09/multi-process-architecture.html" class="external free" rel="nofollow">http://blog.chromium.org/2008/09/multi-process-architecture.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-12</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Multi-process+Architecture&amp;rft.atitle=&amp;rft.aulast=Charlie+Reisn&amp;rft.au=Charlie+Reisn&amp;rft.date=2008-09-11&amp;rft_id=http%3A%2F%2Fblog.chromium.org%2F2008%2F09%2Fmulti-process-architecture.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-77"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-77">^</A></B> <SPAN class="citation web">Andy Zeigler (2008-03-11). "<A href="http://blogs.msdn.com/ie/archive/2008/03/11/ie8-and-loosely-coupled-ie-lcie.aspx" class="external text" rel="nofollow">IE8 and Loosely-Coupled IE (LCIE)</A>"<SPAN class="printonly">. <A href="http://blogs.msdn.com/ie/archive/2008/03/11/ie8-and-loosely-coupled-ie-lcie.aspx" class="external free" rel="nofollow">http://blogs.msdn.com/ie/archive/2008/03/11/ie8-and-loosely-coupled-ie-lcie.aspx</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-12</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=IE8+and+Loosely-Coupled+IE+%28LCIE%29&amp;rft.atitle=&amp;rft.aulast=Andy+Zeigler&amp;rft.au=Andy+Zeigler&amp;rft.date=2008-03-11&amp;rft_id=http%3A%2F%2Fblogs.msdn.com%2Fie%2Farchive%2F2008%2F03%2F11%2Fie8-and-loosely-coupled-ie-lcie.aspx&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-78"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-78">^</A></B> <SPAN class="citation web">Chromium Developer Documentation (2008-09-03). "<A href="http://dev.chromium.org/developers/design-documents/process-models" class="external text" rel="nofollow">Process Models</A>"<SPAN class="printonly">. <A href="http://dev.chromium.org/developers/design-documents/process-models" class="external free" rel="nofollow">http://dev.chromium.org/developers/design-documents/process-models</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-12</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Process+Models&amp;rft.atitle=&amp;rft.aulast=Chromium+Developer+Documentation&amp;rft.au=Chromium+Developer+Documentation&amp;rft.date=2008-09-03&amp;rft_id=http%3A%2F%2Fdev.chromium.org%2Fdevelopers%2Fdesign-documents%2Fprocess-models&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-79"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-79">^</A></B> <SPAN class="citation web">Google (2008-09-21). "<A href="http://google.com/googlebooks/chrome/index.html" class="external text" rel="nofollow">Google Chrome book</A>"<SPAN class="printonly">. <A href="http://google.com/googlebooks/chrome/index.html" class="external free" rel="nofollow">http://google.com/googlebooks/chrome/index.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-21</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+book&amp;rft.atitle=&amp;rft.aulast=Google&amp;rft.au=Google&amp;rft.date=2008-09-21&amp;rft_id=http%3A%2F%2Fgoogle.com%2Fgooglebooks%2Fchrome%2Findex.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-80"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-80">^</A></B> <A href="http://googleblog.blogspot.com/2009/09/google-chrome-after-year-sporting-new.html" class="external text" rel="nofollow">Google Chrome after a year: Sporting a new stable release - Official Google Blog</A></LI>
<LI id="cite_note-81"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-81">^</A></B> <A href="http://lifehacker.com/5350737/add-a-bookmark-button-to-google-chromes-toolbar" class="external text" rel="nofollow">Add a Bookmark Button to Google Chrome's Toolbar - Google Chrome - Lifehacker</A></LI>
<LI id="cite_note-chrome-3d-82"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-chrome-3d_82-0">^</A></B> <SPAN class="citation web">"<A href="http://www.google.com/intl/en/landing/chrome/cadie/" class="external text" rel="nofollow">Google Chrome with 3D</A>". Google. April 1, 2009<SPAN class="printonly">. <A href="http://www.google.com/intl/en/landing/chrome/cadie/" class="external free" rel="nofollow">http://www.google.com/intl/en/landing/chrome/cadie/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-05-26</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+with+3D&amp;rft.atitle=&amp;rft.date=April+1%2C+2009&amp;rft.pub=Google&amp;rft_id=http%3A%2F%2Fwww.google.com%2Fintl%2Fen%2Flanding%2Fchrome%2Fcadie%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-83"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-83">^</A></B> Google Chrome extensions: Not yet, but later. "We don't have that in the beta today, but we definitely plan an extension API," or application programming interface, Sundar Pichai, a Google vice president of product management, said at the Chrome launch event here Tuesday. "It is one of the things we will get to next."<A href="http://news.cnet.com/8301-17939_109-10031764-2.html" class="external text" rel="nofollow">Google Chrome extensions: Not yet, but later</A></LI>
<LI id="cite_note-84"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-84">^</A></B> <A href="http://code.google.com/p/chromium/issues/detail?id=18&sort=-stars&colspec=ID%20Stars%20Pri%20Area%20Type%20Status%20Summary%20Modified%20Owner%20Mstone#c114" class="external text" rel="nofollow">Wishlist: Chrome does not have an addon-system - Google Code</A></LI>
<LI id="cite_note-85"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-85">^</A></B> <SPAN class="citation web">Aaron Boodman. "<A href="http://blog.chromium.org/2009/05/extensions-at-google-io.html" class="external text" rel="nofollow">Extensions at Google I/O</A>"<SPAN class="printonly">. <A href="http://blog.chromium.org/2009/05/extensions-at-google-io.html" class="external free" rel="nofollow">http://blog.chromium.org/2009/05/extensions-at-google-io.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-05-27</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Extensions+at+Google+I%2FO&amp;rft.atitle=&amp;rft.aulast=Aaron+Boodman&amp;rft.au=Aaron+Boodman&amp;rft_id=http%3A%2F%2Fblog.chromium.org%2F2009%2F05%2Fextensions-at-google-io.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-86"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-86">^</A></B> <A href="http://blog.chromium.org/2009/09/extensions-status-on-runway-getting.html" class="external text" rel="nofollow">Extensions Status: On the Runway, Getting Ready for Take-Off</A></LI>
<LI id="cite_note-87"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-87">^</A></B> <A href="http://blog.chromium.org/2009/11/extensions-one-step-closer-to-finish.html" class="external text" rel="nofollow">Extensions: One Step Closer to the Finish Line</A></LI>
<LI id="cite_note-88"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-88">^</A></B> <A href="http://blog.chromium.org/2009/12/extensions-beta-launched-with-over-300.html" class="external text" rel="nofollow">Extensions beta launched, with over 300 extensions!</A></LI>
<LI id="cite_note-89"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-89">^</A></B> <A href="http://chrome.blogspot.com/2009/10/splash-of-color-to-your-browser-artist.html" class="external text" rel="nofollow">A splash of color to your browser: Artist Themes for Google Chrome</A></LI>
<LI id="cite_note-90"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-90">^</A></B> <A href="https://tools.google.com/chrome/intl/en/themes/index.html" class="external text" rel="nofollow">Google Chrome Themes Gallery</A></LI>
<LI id="cite_note-91"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-91">^</A></B> <A href="http://www.google.com/support/chrome/bin/answer.py?hl=en&answer=148695" class="external text" rel="nofollow">Basic settings: Change browser theme</A> Google Chrome Help</LI>
<LI id="cite_note-92"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-92">^</A></B> <A href="http://blog.chromium.org/2008/10/google-chrome-chromium-and-google.html" class="external text" rel="nofollow">Communications between Chromium/Google Chrome and service providers</A></LI>
<LI id="cite_note-iron-93">^ <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-iron_93-0"><SUP><I><B>a</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-iron_93-1"><SUP><I><B>b</B></I></SUP></A> <SPAN class="citation web">"<A href="http://www.srware.net/en/software_srware_iron.php" class="external text" rel="nofollow">SRWare Iron webpage</A>"<SPAN class="printonly">. <A href="http://www.srware.net/en/software_srware_iron.php" class="external free" rel="nofollow">http://www.srware.net/en/software_srware_iron.php</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-10-12</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=SRWare+Iron+webpage&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fwww.srware.net%2Fen%2Fsoftware_srware_iron.php&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-94"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-94">^</A></B> <SPAN class="citation web">"<A href="http://foliovision.com/2008/12/09/adwords-ppc-organic-rlz/" class="external text" rel="nofollow">&amp;rlz= in Google referrer: Organic traffic or AdWords?</A>"<SPAN class="printonly">. <A href="http://foliovision.com/2008/12/09/adwords-ppc-organic-rlz/" class="external free" rel="nofollow">http://foliovision.com/2008/12/09/adwords-ppc-organic-rlz/</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-02-27</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=%26rlz%3D+in+Google+referrer%3A+Organic+traffic+or+AdWords%3F&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Ffoliovision.com%2F2008%2F12%2F09%2Fadwords-ppc-organic-rlz%2F&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-95"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-95">^</A></B> It is known to contain, but not limited to, information on where Chrome was downloaded from, its install timestamp, and a timestamp from when "certain features were first used."</LI>
<LI id="cite_note-privacy-96">^ <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-privacy_96-0"><SUP><I><B>a</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-privacy_96-1"><SUP><I><B>b</B></I></SUP></A> <A href="http://www.google.com/support/chrome/bin/answer.py?hl=en&answer=107684" class="external text" rel="nofollow">General Privacy&nbsp;: Privacy, unique IDs, and RLZ - Google Chrome Help</A></LI>
<LI id="cite_note-blogoscoped-97">^ <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-blogoscoped_97-0"><SUP><I><B>a</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-blogoscoped_97-1"><SUP><I><B>b</B></I></SUP></A> <A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-blogoscoped_97-2"><SUP><I><B>c</B></I></SUP></A> <SPAN class="citation web">"<A href="http://blogoscoped.com/archive/2008-09-09-n68.html" class="external text" rel="nofollow">Google Reacts to Some Chrome Privacy Concerns</A>"<SPAN class="printonly">. <A href="http://blogoscoped.com/archive/2008-09-09-n68.html" class="external free" rel="nofollow">http://blogoscoped.com/archive/2008-09-09-n68.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-24</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Reacts+to+Some+Chrome+Privacy+Concerns&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fblogoscoped.com%2Farchive%2F2008-09-09-n68.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-98"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-98">^</A></B> <SPAN class="citation web">Dr. Sven Abels, Abelssoft GmbH. "<A href="http://abelssoft.net/unchrome.php" class="external text" rel="nofollow">UnChrome - Anonymize Google Chrome - UnChrome removed the unique ID from Google Chrome</A>". Abelssoft.net<SPAN class="printonly">. <A href="http://abelssoft.net/unchrome.php" class="external free" rel="nofollow">http://abelssoft.net/unchrome.php</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-08-07</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=UnChrome+-+Anonymize+Google+Chrome+-+UnChrome+removed+the+unique+ID+from+Google+Chrome&amp;rft.atitle=&amp;rft.aulast=Dr.+Sven+Abels%2C+Abelssoft+GmbH&amp;rft.au=Dr.+Sven+Abels%2C+Abelssoft+GmbH&amp;rft.pub=Abelssoft.net&amp;rft_id=http%3A%2F%2Fabelssoft.net%2Funchrome.php&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-99"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-99">^</A></B> <SPAN class="citation web">Mark Larson (2009-01-08). "<A href="http://blog.chromium.org/2009/01/google-chrome-release-channels.html" class="external text" rel="nofollow">Google Chrome Release Channels</A>"<SPAN class="printonly">. <A href="http://blog.chromium.org/2009/01/google-chrome-release-channels.html" class="external free" rel="nofollow">http://blog.chromium.org/2009/01/google-chrome-release-channels.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-01-09</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+Release+Channels&amp;rft.atitle=&amp;rft.aulast=Mark+Larson&amp;rft.au=Mark+Larson&amp;rft.date=2009-01-08&amp;rft_id=http%3A%2F%2Fblog.chromium.org%2F2009%2F01%2Fgoogle-chrome-release-channels.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-100"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-100">^</A></B> <SPAN class="citation web">Mark Larson (2009-01-08). "<A href="http://googlechromereleases.blogspot.com/2009/01/dev-update-new-webkit-version-new.html" class="external text" rel="nofollow">Dev update: New WebKit version, new features, and a new Dev channel</A>"<SPAN class="printonly">. <A href="http://googlechromereleases.blogspot.com/2009/01/dev-update-new-webkit-version-new.html" class="external free" rel="nofollow">http://googlechromereleases.blogspot.com/2009/01/dev-update-new-webkit-version-new.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-01-09</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Dev+update%3A+New+WebKit+version%2C+new+features%2C+and+a+new+Dev+channel&amp;rft.atitle=&amp;rft.aulast=Mark+Larson&amp;rft.au=Mark+Larson&amp;rft.date=2009-01-08&amp;rft_id=http%3A%2F%2Fgooglechromereleases.blogspot.com%2F2009%2F01%2Fdev-update-new-webkit-version-new.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-101"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-101">^</A></B> <A href="http://google-opensource.blogspot.com/2009/05/google-update-releases-update-controls.html" class="external text" rel="nofollow">Google blog post announcing Google Update Controls</A></LI>
<LI id="cite_note-102"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-102">^</A></B> <A href="http://www.google.com/chrome/eula.html?standalone=1" class="external text" rel="nofollow">standalone download page</A></LI>
<LI id="cite_note-103"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-103">^</A></B> <A href="http://googlesystem.blogspot.com/2009/03/standalone-offline-installer-for-google.html" class="external text" rel="nofollow">Standalone Offline Installer for Google Chrome</A></LI>
<LI id="cite_note-104"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-104">^</A></B> <A href="http://www.google.com/support/installer/bin/answer.py?hl=en&answer=147176&ctx=go" class="external text" rel="nofollow">Google Help page "Managing updates in Google Software Update"</A></LI>
<LI id="cite_note-105"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-105">^</A></B> <A href="http://blog.chromium.org/2009/07/smaller-is-faster-and-safer-too.html" class="external text" rel="nofollow">Chromium Blog: Smaller is Faster (and Safer Too)</A></LI>
<LI id="cite_note-106"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-106">^</A></B> <SPAN class="citation news">Moore, Matthew (2008-09-02). "<A href="http://www.telegraph.co.uk/connected/main.jhtml?xml=/connected/2008/09/03/dlchrome103.xml" class="external text" rel="nofollow">Google Chrome browser: Review of reviews</A>". <I>Daily Telegraph</I> (Telegraph Media Group)<SPAN class="printonly">. <A href="http://www.telegraph.co.uk/connected/main.jhtml?xml=/connected/2008/09/03/dlchrome103.xml" class="external free" rel="nofollow">http://www.telegraph.co.uk/connected/main.jhtml?xml=/connected/2008/09/03/dlchrome103.xml</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-04</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.atitle=Google+Chrome+browser%3A+Review+of+reviews&amp;rft.jtitle=Daily+Telegraph&amp;rft.aulast=Moore&amp;rft.aufirst=Matthew&amp;rft.au=Moore%2C%26%2332%3BMatthew&amp;rft.date=2008-09-02&amp;rft.pub=Telegraph+Media+Group&amp;rft_id=http%3A%2F%2Fwww.telegraph.co.uk%2Fconnected%2Fmain.jhtml%3Fxml%3D%2Fconnected%2F2008%2F09%2F03%2Fdlchrome103.xml&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-ap-107"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-ap_107-0">^</A></B> <A href="http://ap.google.com/article/ALeqM5hHvkt5UkooUX1otx8ROBM0k-5VcQD92UV6MG0" class="external text" rel="nofollow">The Associated Press: Google polishes product line with Chrome browser</A><SUP class="noprint Inline-Template"><SPAN title="&nbsp;since May 2009" style="white-space: nowrap;">[<I><A href="http://en.wikipedia.org/wiki/Wikipedia:Linkrot" title="Wikipedia:Linkrot">dead link</A></I>]</SPAN></SUP></LI>
<LI id="cite_note-108"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-108">^</A></B> <A href="http://john.jubjubs.net/2008/09/01/thoughts-on-chrome-more/" class="external text" rel="nofollow">John's Blog, Thoughts on Chrome &amp; More</A></LI>
<LI id="cite_note-109"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-109">^</A></B> <A href="http://www.pcpro.co.uk/news/222147/mozilla-google-is-not-trying-to-kill-us.html" class="external text" rel="nofollow">PC Pro: News: Mozilla: Google's not trying to kill us</A></LI>
<LI id="cite_note-110"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-110">^</A></B> <SPAN class="citation web">Mediati, Nick (2008-09-03). "<A href="http://www.pcworld.com/article/150579/google_chrome_web_browser.html" class="external text" rel="nofollow">Google Chrome Web Browser</A>". <A href="http://en.wikipedia.org/wiki/PC_World_(magazine)" title="PC World (magazine)">PC World</A><SPAN class="printonly">. <A href="http://www.pcworld.com/article/150579/google_chrome_web_browser.html" class="external free" rel="nofollow">http://www.pcworld.com/article/150579/google_chrome_web_browser.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-07</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+Web+Browser&amp;rft.atitle=&amp;rft.aulast=Mediati&amp;rft.aufirst=Nick&amp;rft.au=Mediati%2C%26%2332%3BNick&amp;rft.date=2008-09-03&amp;rft.pub=%5B%5BPC+World+%28magazine%29%7CPC+World%5D%5D&amp;rft_id=http%3A%2F%2Fwww.pcworld.com%2Farticle%2F150579%2Fgoogle_chrome_web_browser.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-111"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-111">^</A></B> <SPAN class="citation news">Gärtner, Matthias (2008-09-09). "<A href="http://www.bsi.de/presse/kurzmeldung/090908chrome.htm" class="external text" rel="nofollow">BSI-Position zu Google-Chrome</A>" (in German). <I>Federal Office for Information Security</I> (Federal Office for Information Security)<SPAN class="printonly">. <A href="http://www.bsi.de/presse/kurzmeldung/090908chrome.htm" class="external free" rel="nofollow">http://www.bsi.de/presse/kurzmeldung/090908chrome.htm</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-09</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.atitle=BSI-Position+zu+Google-Chrome&amp;rft.jtitle=Federal+Office+for+Information+Security&amp;rft.aulast=G%C3%A4rtner&amp;rft.aufirst=Matthias&amp;rft.au=G%C3%A4rtner%2C%26%2332%3BMatthias&amp;rft.date=2008-09-09&amp;rft.pub=Federal+Office+for+Information+Security&amp;rft_id=http%3A%2F%2Fwww.bsi.de%2Fpresse%2Fkurzmeldung%2F090908chrome.htm&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-112"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-112">^</A></B> <SPAN class="citation news">Ackerman, Elise. "<A href="http://www.mercurynews.com/breakingnews/ci_10510989" class="external text" rel="nofollow">Google browser's tracking feature alarms developers, privacy advocates</A>". Mercury News<SPAN class="printonly">. <A href="http://www.mercurynews.com/breakingnews/ci_10510989" class="external free" rel="nofollow">http://www.mercurynews.com/breakingnews/ci_10510989</A></SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+browser%27s+tracking+feature+alarms+developers%2C+privacy+advocates&amp;rft.atitle=&amp;rft.aulast=Ackerman&amp;rft.aufirst=Elise&amp;rft.au=Ackerman%2C%26%2332%3BElise&amp;rft.pub=Mercury+News&amp;rft_id=http%3A%2F%2Fwww.mercurynews.com%2Fbreakingnews%2Fci_10510989&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-113"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-113">^</A></B> <SPAN class="citation web">"<A href="http://news.cnet.com/8301-13860_3-10031661-56.html?tag=txt" class="external text" rel="nofollow">Google's Omnibox could be Pandora's box</A>". 2008-09-03<SPAN class="printonly">. <A href="http://news.cnet.com/8301-13860_3-10031661-56.html?tag=txt" class="external free" rel="nofollow">http://news.cnet.com/8301-13860_3-10031661-56.html?tag=txt</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-04</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google%27s+Omnibox+could+be+Pandora%27s+box&amp;rft.atitle=&amp;rft.date=2008-09-03&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2F8301-13860_3-10031661-56.html%3Ftag%3Dtxt&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-114"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-114">^</A></B> <SPAN class="citation web">"<A href="http://news.cnet.com/8301-17939_109-10030522-2.html" class="external text" rel="nofollow">Be sure to read Chrome's fine print</A>". <A href="http://en.wikipedia.org/wiki/CNET" title="CNET" class="mw-redirect">CNET</A><SPAN class="printonly">. <A href="http://news.cnet.com/8301-17939_109-10030522-2.html" class="external free" rel="nofollow">http://news.cnet.com/8301-17939_109-10030522-2.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-03</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Be+sure+to+read+Chrome%27s+fine+print&amp;rft.atitle=&amp;rft.pub=%5B%5BCNET%5D%5D&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2F8301-17939_109-10030522-2.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-115"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-115">^</A></B> <A href="https://www.google.com/accounts/TOS?hl=en" class="external text" rel="nofollow">Google Terms of Service</A></LI>
<LI id="cite_note-116"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-116">^</A></B> <SPAN class="citation web">"<A href="http://www.google.com/chrome/eula.html?hl=en" class="external text" rel="nofollow">Google Chrome Terms of Service (English)</A>"<SPAN class="printonly">. <A href="http://www.google.com/chrome/eula.html?hl=en" class="external free" rel="nofollow">http://www.google.com/chrome/eula.html?hl=en</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2008-09-04</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+Terms+of+Service+%28English%29&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fwww.google.com%2Fchrome%2Feula.html%3Fhl%3Den&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-license-change-117"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-license-change_117-0">^</A></B> <SPAN class="citation"><A href="http://www.pcworld.com/businesscenter/article/150637/google_amends_chrome_license_agreement_after_objections.html" class="external text" rel="nofollow"><I>Google Amends Chrome License Agreement After Objections</I></A>, <A href="http://en.wikipedia.org/wiki/PC_World_(magazine)" title="PC World (magazine)">PC World</A>, 2008-09-03<SPAN class="printonly">, <A href="http://www.pcworld.com/businesscenter/article/150637/google_amends_chrome_license_agreement_after_objections.html" class="external free" rel="nofollow">http://www.pcworld.com/businesscenter/article/150637/google_amends_chrome_license_agreement_after_objections.html</A></SPAN><SPAN class="reference-accessdate">, retrieved 2008-09-03</SPAN></SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=book&amp;rft.btitle=Google+Amends+Chrome+License+Agreement+After+Objections&amp;rft.date=2008-09-03&amp;rft.pub=%5B%5BPC+World+%28magazine%29%7CPC+World%5D%5D&amp;rft_id=http%3A%2F%2Fwww.pcworld.com%2Fbusinesscenter%2Farticle%2F150637%2Fgoogle_amends_chrome_license_agreement_after_objections.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-118"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-118">^</A></B> <SPAN class="citation web">"<A href="http://www.google.com/chrome/intl/en/privacy.html" class="external text" rel="nofollow">Google Chrome Privacy Notice</A>"<SPAN class="printonly">. <A href="http://www.google.com/chrome/intl/en/privacy.html" class="external free" rel="nofollow">http://www.google.com/chrome/intl/en/privacy.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-10-27</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+Chrome+Privacy+Notice&amp;rft.atitle=&amp;rft_id=http%3A%2F%2Fwww.google.com%2Fchrome%2Fintl%2Fen%2Fprivacy.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-Hanselman-119"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-Hanselman_119-0">^</A></B> <SPAN class="citation web">Hanselman, Scott. "<A href="http://www.hanselman.com/blog/TheWeeklySourceCode33MicrosoftOpenSourceInsideGoogleChrome.aspx" class="external text" rel="nofollow">The Weekly Source Code 33</A>"<SPAN class="printonly">. <A href="http://www.hanselman.com/blog/TheWeeklySourceCode33MicrosoftOpenSourceInsideGoogleChrome.aspx" class="external free" rel="nofollow">http://www.hanselman.com/blog/TheWeeklySourceCode33MicrosoftOpenSourceInsideGoogleChrome.aspx</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-01-07</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=The+Weekly+Source+Code+33&amp;rft.atitle=&amp;rft.aulast=Hanselman&amp;rft.aufirst=Scott&amp;rft.au=Hanselman%2C%26%2332%3BScott&amp;rft_id=http%3A%2F%2Fwww.hanselman.com%2Fblog%2FTheWeeklySourceCode33MicrosoftOpenSourceInsideGoogleChrome.aspx&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
<LI id="cite_note-120"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-120">^</A></B> <SPAN class="citation web">Stephen Shankland (2008-09-19). "<A href="http://news.cnet.com/8301-1001_3-10046395-92.html" class="external text" rel="nofollow">Google denies disassembling Vista software</A>". <A href="http://en.wikipedia.org/wiki/CNET_News" title="CNET News" class="mw-redirect">CNET News</A><SPAN class="printonly">. <A href="http://news.cnet.com/8301-1001_3-10046395-92.html" class="external free" rel="nofollow">http://news.cnet.com/8301-1001_3-10046395-92.html</A></SPAN><SPAN class="reference-accessdate">. Retrieved 2009-02-09</SPAN>.</SPAN><SPAN class="Z3988" title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=bookitem&amp;rft.btitle=Google+denies+disassembling+Vista+software&amp;rft.atitle=&amp;rft.aulast=Stephen+Shankland&amp;rft.au=Stephen+Shankland&amp;rft.date=2008-09-19&amp;rft.pub=%5B%5BCNET+News%5D%5D&amp;rft_id=http%3A%2F%2Fnews.cnet.com%2F8301-1001_3-10046395-92.html&amp;rfr_id=info:sid/en.wikipedia.org:Google_Chrome"><SPAN style="display: none;">&nbsp;</SPAN></SPAN></LI>
</OL>
</DIV>
<H2><SPAN class="editsection">[<A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit&section=19" title="Edit section: External links">edit</A>]</SPAN> <SPAN class="mw-headline" id="External_links">External links</SPAN></H2>
<TABLE class="metadata plainlinks mbox-small" style="border:1px solid #aaa; background-color:#f9f9f9;">
<TBODY><TR>
<TD class="mbox-image"><A href="http://en.wikinews.org/wiki/Special:Search/Google_Chrome" title="Search Wikinews"><IMG alt="Search Wikinews" src="./chrome_wikipedia_ORIGINAL_files/40px-Wikinews-logo.svg.png" width="40" height="23"></A></TD>
<TD class="mbox-text" style=""><A href="http://en.wikipedia.org/wiki/Wikinews" title="Wikinews">Wikinews</A> has related news: <I><B><A href="http://en.wikinews.org/wiki/Google_launches_web_browser,_dubbed_Chrome" class="extiw" title="wikinews:Google launches web browser, dubbed Chrome">Google launches web browser, dubbed Chrome</A></B></I></TD>
</TR>
</TBODY></TABLE>
<TABLE class="metadata plainlinks mbox-small" style="border:1px solid #aaa; background-color:#f9f9f9;">
<TBODY><TR>
<TD class="mbox-image"><A href="http://commons.wikimedia.org/wiki/Special:Search/Google_Chrome" title="Search Wikimedia Commons"><IMG alt="Search Wikimedia Commons" src="./chrome_wikipedia_ORIGINAL_files/40px-Commons-logo.svg.png" width="40" height="54"></A></TD>
<TD class="mbox-text" style=""><A href="http://en.wikipedia.org/wiki/Wikimedia_Commons" title="Wikimedia Commons">Wikimedia Commons</A> has media related to: <B><I><A href="http://commons.wikimedia.org/wiki/Category:Google_Chrome" class="extiw" title="commons:Category:Google Chrome">Google Chrome</A> </I></B></TD>
</TR>
</TBODY></TABLE>
<UL>
<LI><A href="http://www.google.com/chrome" class="external text" rel="nofollow">Google Chrome Homepage and download site</A></LI>
<LI><A href="http://www.google.com/chrome/intl/en/features.html" class="external text" rel="nofollow">Google Chrome Feature List</A></LI>
<LI><A href="http://code.google.com/p/chromium/" class="external text" rel="nofollow">Chromium project page</A> at Google Code</LI>
<LI><A href="http://blog.chromium.org/" class="external text" rel="nofollow">The Chromium blog</A> from Google</LI>
<LI><A href="http://www.google.com/googlebooks/chrome/" class="external text" rel="nofollow">Google Chrome Comic Book</A></LI>
</UL>
<TABLE class="navbox" cellspacing="0" style=";">
<TBODY><TR>
<TD style="padding:2px;">
<TABLE cellspacing="0" class="nowraplinks collapsible collapsed" style="width:100%;background:transparent;color:inherit;;" id="collapsibleTable0">
<TBODY><TR>
<TH style=";" colspan="2" class="navbox-title"><SPAN class="collapseButton">[<A id="collapseButton0" href="javascript:collapseTable(0);">show</A>]</SPAN>
<DIV style="float:left; width:6em;text-align:left;">
<DIV class="noprint plainlinks navbar" style="background:none; padding:0; font-weight:normal;;;border:none;; font-size:xx-small;"><A href="http://en.wikipedia.org/wiki/Template:Google_Inc." title="Template:Google Inc."><SPAN title="View this template" style=";;border:none;">v</SPAN></A>&nbsp;<SPAN style="font-size:80%;"></SPAN>&nbsp;<A href="http://en.wikipedia.org/wiki/Template_talk:Google_Inc." title="Template talk:Google Inc."><SPAN title="Discuss this template" style=";;border:none;">d</SPAN></A>&nbsp;<SPAN style="font-size:80%;"></SPAN>&nbsp;<A href="http://en.wikipedia.org/w/index.php?title=Template:Google_Inc.&action=edit" class="external text" rel="nofollow"><SPAN title="Edit this template" style=";;border:none;;">e</SPAN></A></DIV>
</DIV>
<SPAN class="" style="font-size:110%;"><A href="http://en.wikipedia.org/wiki/Google" title="Google">Google Inc.</A></SPAN></TH>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-abovebelow" style=";" colspan="2"><SPAN style="white-space:nowrap"><B>Chairman/CEO</B>: <A href="http://en.wikipedia.org/wiki/Eric_E._Schmidt" title="Eric E. Schmidt">Eric E. Schmidt</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B>Director/Technology President/Co-Founder</B>: <A href="http://en.wikipedia.org/wiki/Sergey_Brin" title="Sergey Brin">Sergey Brin</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B>Director/Products President/Co-Founder</B>: <A href="http://en.wikipedia.org/wiki/Larry_Page" title="Larry Page">Larry Page</A><BR>
<B>Other Directors</B>: <A href="http://en.wikipedia.org/wiki/John_Doerr" title="John Doerr">John Doerr</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/John_L._Hennessy" title="John L. Hennessy">John L. Hennessy</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Arthur_D._Levinson" title="Arthur D. Levinson">Arthur D. Levinson</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Ann_Mather" title="Ann Mather">Ann Mather</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Paul_Otellini" title="Paul Otellini">Paul Otellini</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Ram_Shriram" title="Ram Shriram">Ram Shriram</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Shirley_M._Tilghman" title="Shirley M. Tilghman">Shirley M. Tilghman</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B>Senior Advisor</B>: <A href="http://en.wikipedia.org/wiki/Al_Gore" title="Al Gore">Al Gore</A></SPAN></TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Advertising</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Ad_Manager" title="Ad Manager">Ad Manager</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/AdMob" title="AdMob">AdMob</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Adscape" title="Adscape">Adscape</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/AdSense" title="AdSense">AdSense</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Advertising_Professional" title="Google Advertising Professional">Advertising Professionals</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/AdWords" title="AdWords">AdWords</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Analytics" title="Google Analytics">Analytics</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Checkout" title="Google Checkout">Checkout</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/DoubleClick" title="DoubleClick">DoubleClick</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Communication</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Google_Alerts" title="Google Alerts">Alerts</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Calendar" title="Google Calendar">Calendar</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Friend_Connect" title="Google Friend Connect">Friend Connect</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Gmail" title="Gmail">Gmail</A><SMALL>&nbsp;(<A href="http://en.wikipedia.org/wiki/History_of_Gmail" title="History of Gmail">history</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Gmail_interface" title="Gmail interface">interface</A>)</SMALL><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Groups" title="Google Groups">Groups</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Talk" title="Google Talk">Gtalk</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Latitude" title="Google Latitude">Latitude</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Orkut" title="Orkut">Orkut</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Questions_and_Answers" title="Google Questions and Answers">Q &amp; A</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Reader" title="Google Reader">Reader</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Translate" title="Google Translate">Translate</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Voice" title="Google Voice">Voice</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Wave" title="Google Wave">Wave</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Software</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><STRONG class="selflink">Chrome</STRONG><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Chrome_OS" title="Google Chrome OS">Chrome OS</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Desktop" title="Google Desktop">Desktop</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Earth" title="Google Earth">Earth</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Desktop#Gadgets_.26_plug-ins" title="Google Desktop">Gadgets</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Gmail_Mobile" title="Gmail Mobile">Gmail Mobile</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/w/index.php?title=Google_Japanese_Input&action=edit&redlink=1" class="new" title="Google Japanese Input (page does not exist)">Japanese Input</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Pack" title="Google Pack">Pack</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Picasa" title="Picasa">Picasa</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Pinyin" title="Google Pinyin">Pinyin</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_PowerMeter" title="Google PowerMeter">PowerMeter</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/SketchUp" title="SketchUp">SketchUp</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Talk" title="Google Talk">Talk</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Toolbar" title="Google Toolbar">Toolbar</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Pack#Google_Updater" title="Google Pack">Updater</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Urchin_(software)" title="Urchin (software)">Urchin</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Google_platform" title="Google platform">Platforms</A></TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Google_Account" title="Google Account">Account</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Android_(mobile_device_platform)" title="Android (mobile device platform)" class="mw-redirect">Android</A> <SMALL>(<A href="http://en.wikipedia.org/wiki/Nexus_One" title="Nexus One">Nexus One</A>)</SMALL><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_App_Engine" title="Google App Engine">App Engine</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Apps" title="Google Apps">Apps</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Base" title="Google Base">Base</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/BigTable" title="BigTable">BigTable</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Caja_(programming_language)" title="Caja (programming language)" class="mw-redirect">Caja</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Co-op" title="Google Co-op">Co-op</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Gears_(software)" title="Gears (software)">Gears</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_File_System" title="Google File System">GFS</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Health" title="Google Health">Health</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Native_Client" title="Google Native Client">Native Client</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/OpenSocial" title="OpenSocial">OpenSocial</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Public_DNS" title="Google Public DNS">Public DNS</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Wave_Federation_Protocol" title="Google Wave Federation Protocol">Wave</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Development tools</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Google_AJAX_APIs" title="Google AJAX APIs">AJAX APIs</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Closure_Tools" title="Google Closure Tools">Closure Tools</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Code" title="Google Code">Code</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Gadgets_API" title="Google Gadgets API">Gadgets API</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/GData" title="GData">GData</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Googlebot" title="Googlebot">Googlebot</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Guice" title="Google Guice">Guice</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Web_Server" title="Google Web Server">GWS</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Image_Labeler" title="Google Image Labeler">Image Labeler</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Keyhole_Markup_Language" title="Keyhole Markup Language">KML</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/MapReduce" title="MapReduce">MapReduce</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/SketchUp_Ruby" title="SketchUp Ruby">SketchUp Ruby</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Sitemaps" title="Sitemaps">Sitemaps</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Summer_of_Code" title="Google Summer of Code">Summer of Code</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_TechTalks" title="Google TechTalks" class="mw-redirect">TechTalks</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Web_Toolkit" title="Google Web Toolkit">Web Toolkit</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Website_Optimizer" title="Google Website Optimizer">Website Optimizer</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Publishing</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Blogger_(service)" title="Blogger (service)">Blogger</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Bookmarks" title="Google Bookmarks">Bookmarks</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Docs" title="Google Docs">Docs</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/FeedBurner" title="FeedBurner">FeedBurner</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/IGoogle" title="IGoogle">iGoogle</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Jaiku" title="Jaiku">Jaiku</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Knol" title="Knol">Knol</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Map_Maker" title="Google Map Maker">Map Maker</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Panoramio" title="Panoramio">Panoramio</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Picasa#Picasa_Web_Albums" title="Picasa">Picasa Web Albums</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Sites" title="Google Sites">Sites (JotSpot)</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/YouTube" title="YouTube">YouTube</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Search (<A href="http://en.wikipedia.org/wiki/PageRank" title="PageRank">PageRank</A>)</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Google_Search_Appliance" title="Google Search Appliance">Appliance</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Audio_Indexing" title="Google Audio Indexing">Audio</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Book_Search" title="Google Book Search">Books</A><SMALL>&nbsp;(<A href="http://en.wikipedia.org/wiki/Google_Books_Library_Project" title="Google Books Library Project">Library Project</A>)</SMALL><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Code_Search" title="Google Code Search">Code</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Desktop" title="Google Desktop">Desktop</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Fast_Flip" title="Google Fast Flip">Fast Flip</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Finance" title="Google Finance">Finance</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/GOOG-411" title="GOOG-411">GOOG-411</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Image_Search" title="Google Image Search" class="mw-redirect">Images</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Maps" title="Google Maps">Maps</A><SMALL>&nbsp;(<A href="http://en.wikipedia.org/wiki/Google_Street_View" title="Google Street View">Street View</A>)</SMALL><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_News" title="Google News">News</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Patents" title="Google Patents">Patents</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Product_Search" title="Google Product Search">Products</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Scholar" title="Google Scholar">Scholar</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_SearchWiki" title="Google SearchWiki">SearchWiki</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Groups" title="Google Groups">Usenet</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Video" title="Google Video" class="mw-redirect">Video</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_search" title="Google search">Web Search</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> Analysis: <A href="http://en.wikipedia.org/wiki/Google_Insights_for_Search" title="Google Insights for Search">Insights for Search</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Trends" title="Google Trends">Trends</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_guidelines" title="Google guidelines">Webmaster guidelines</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/List_of_Google_products#Previous_products" title="List of Google products">Discontinued</A></TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Google_Answers" title="Google Answers">Answers</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Browser_Sync" title="Google Browser Sync">Browser Sync</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/AdWords#Click-to-Call" title="AdWords">Click-to-Call</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Dodgeball_(service)" title="Dodgeball (service)">Dodgeball</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Joga_Bonito" title="Joga Bonito">Joga Bonito</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Lively" title="Google Lively">Lively</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Mashup_Editor" title="Google Mashup Editor">Mashup Editor</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Notebook" title="Google Notebook">Notebook</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Page_Creator" title="Google Page Creator">Page Creator</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Video_Marketplace" title="Google Video Marketplace">Video Marketplace</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Web_Accelerator" title="Google Web Accelerator">Web Accelerator</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Category:Google" title="Category:Google">See also</A></TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/List_of_acquisitions_by_Google" title="List of acquisitions by Google">Acquisitions</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_bomb" title="Google bomb">Bomb</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Censorship_by_Google" title="Censorship by Google">Censorship</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Criticism_of_Google" title="Criticism of Google">Criticism</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google.org#Google_Foundation" title="Google.org">Foundation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_China" title="Google China">Google China</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google.org" title="Google.org">Google.org</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Googleplex" title="Googleplex">Googleplex</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/History_of_Google" title="History of Google">History</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google%27s_hoaxes" title="Google&#39;s hoaxes">Hoaxes</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_search#.22I.27m_Feeling_Lucky.22" title="Google search">I'm Feeling Lucky</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_I/O" title="Google I/O">I/O</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Labs" title="Google Labs">Labs</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_logo" title="Google logo">Logo</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Lunar_X_Prize" title="Google Lunar X Prize">Lunar X Prize</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/List_of_Google_products" title="List of Google products">Products</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Ventures" title="Google Ventures">Google Ventures</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_WiFi" title="Google WiFi">WiFi</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Zeitgeist" title="Google Zeitgeist" class="mw-redirect">Zeitgeist</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-abovebelow" style=";" colspan="2"><SPAN style="white-space:nowrap"><B>Annual revenue</B>: <A href="http://en.wikipedia.org/wiki/United_States_dollar" title="United States dollar">US$</A>21.80 <A href="http://en.wikipedia.org/wiki/1000000000_(number)" title="1000000000 (number)">billion</A> (<A href="http://en.wikipedia.org/wiki/Fiscal_year" title="Fiscal year">FY</A> 2008, <SPAN style="color: #0c0; font-size: larger;"></SPAN>31% from 2007)&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B><A href="http://en.wikipedia.org/wiki/Category:Google_employees" title="Category:Google employees">Employees</A></B>: 19,786 full-time (Jun. 30, 2009)&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B><A href="http://en.wikipedia.org/wiki/History_of_Google#Financing_and_initial_public_offering" title="History of Google">Stock symbol</A></B>: (<A href="http://en.wikipedia.org/wiki/NASDAQ" title="NASDAQ">NASDAQ</A>:&nbsp;<A href="http://quotes.nasdaq.com/asp/SummaryQuote.asp?symbol=GOOG&selected=GOOG" class="external text" rel="nofollow">GOOG</A>, <A href="http://en.wikipedia.org/wiki/London_Stock_Exchange" title="London Stock Exchange">LSE</A>:&nbsp;<A href="http://www.londonstockexchange.com/exchange/prices-and-news/stocks/prices-search/stock-prices-search.html?nameCode=GGEA" class="external text" rel="nofollow">GGEA</A>)&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B>Motto</B>: <A href="http://en.wikipedia.org/wiki/Don%27t_be_evil" title="Don&#39;t be evil">Don't be evil</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B><A href="http://en.wikipedia.org/wiki/Google.com" title="Google.com" class="mw-redirect">Website</A></B>: <A href="http://www.google.com/" class="external text" rel="nofollow">www.google.com</A></SPAN></TD>
</TR>
</TBODY></TABLE>
</TD>
</TR>
</TBODY></TABLE>
<TABLE class="navbox" cellspacing="0" style=";">
<TBODY><TR>
<TD style="padding:2px;">
<TABLE cellspacing="0" class="nowraplinks collapsible autocollapse" style="width:100%;background:transparent;color:inherit;;" id="collapsibleTable1">
<TBODY><TR>
<TH style=";" colspan="2" class="navbox-title"><SPAN class="collapseButton">[<A id="collapseButton1" href="javascript:collapseTable(1);">show</A>]</SPAN>
<DIV style="float:left; width:6em;text-align:left;">
<DIV class="noprint plainlinks navbar" style="background:none; padding:0; font-weight:normal;;;border:none;; font-size:xx-small;"><A href="http://en.wikipedia.org/wiki/Template:Web_browsers" title="Template:Web browsers"><SPAN title="View this template" style=";;border:none;">v</SPAN></A>&nbsp;<SPAN style="font-size:80%;"></SPAN>&nbsp;<A href="http://en.wikipedia.org/wiki/Template_talk:Web_browsers" title="Template talk:Web browsers"><SPAN title="Discuss this template" style=";;border:none;">d</SPAN></A>&nbsp;<SPAN style="font-size:80%;"></SPAN>&nbsp;<A href="http://en.wikipedia.org/w/index.php?title=Template:Web_browsers&action=edit" class="external text" rel="nofollow"><SPAN title="Edit this template" style=";;border:none;;">e</SPAN></A></DIV>
</DIV>
<SPAN class="" style="font-size:110%;"><A href="http://en.wikipedia.org/wiki/Web_browser" title="Web browser">Web browsers</A> <SMALL>(<A href="http://en.wikipedia.org/wiki/List_of_web_browsers" title="List of web browsers">list</A>, <A href="http://en.wikipedia.org/wiki/List_of_web_browsers_for_Unix_and_Unix-like_operating_systems" title="List of web browsers for Unix and Unix-like operating systems">list for Unix</A>, <A href="http://en.wikipedia.org/wiki/Comparison_of_web_browsers" title="Comparison of web browsers">comparison</A>, <A href="http://en.wikipedia.org/wiki/History_of_the_web_browser" title="History of the web browser">history</A>, <A href="http://en.wikipedia.org/wiki/Usage_share_of_web_browsers" title="Usage share of web browsers">usage share</A>, <A href="http://en.wikipedia.org/wiki/Timeline_of_web_browsers" title="Timeline of web browsers">timeline</A>)</SMALL></SPAN></TH>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Trident_(layout_engine)" title="Trident (layout engine)">Trident</A>-<A href="http://en.wikipedia.org/wiki/Internet_Explorer_shell" title="Internet Explorer shell">shells</A></TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/AOL_Explorer" title="AOL Explorer">AOL Explorer</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Avant_Browser" title="Avant Browser">Avant</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Enigma_Browser" title="Enigma Browser">Enigma</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/GreenBrowser" title="GreenBrowser">GreenBrowser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Maxthon" title="Maxthon">Maxthon</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/MenuBox" title="MenuBox">MenuBox</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/NeoPlanet" title="NeoPlanet">NeoPlanet</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/NetCaptor" title="NetCaptor">NetCaptor</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Netscape_Browser" title="Netscape Browser">Netscape 8</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Internet_Explorer" title="Internet Explorer">Internet Explorer</A> <SMALL>(<I><A href="http://en.wikipedia.org/wiki/Internet_Explorer_4" title="Internet Explorer 4">4</A>, <A href="http://en.wikipedia.org/wiki/Internet_Explorer_5" title="Internet Explorer 5">5</A>, <A href="http://en.wikipedia.org/wiki/Internet_Explorer_6" title="Internet Explorer 6">6</A></I>, <A href="http://en.wikipedia.org/wiki/Internet_Explorer_7" title="Internet Explorer 7">7</A>, <A href="http://en.wikipedia.org/wiki/Internet_Explorer_8" title="Internet Explorer 8">8</A>; <I><A href="http://en.wikipedia.org/wiki/Internet_Explorer_for_UNIX" title="Internet Explorer for UNIX">for UNIX</A></I>)</SMALL>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/IRider" title="IRider">iRider</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Sleipnir_(web_browser)" title="Sleipnir (web browser)">Sleipnir</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Tencent_Traveler" title="Tencent Traveler" class="mw-redirect">Tencent Traveler</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/UltraBrowser" title="UltraBrowser">UltraBrowser</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/WebbIE" title="WebbIE">WebbIE</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Zac_Browser" title="Zac Browser">Zac Browser</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Gecko_(layout_engine)" title="Gecko (layout engine)">Gecko</A>-based</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/AT%26T_Pogo" title="AT&amp;T Pogo">AT&amp;T Pogo</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Beonex_Communicator" title="Beonex Communicator">Beonex Communicator</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Camino" title="Camino">Camino</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Classilla" title="Classilla">Classilla</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Conkeror" title="Conkeror">Conkeror</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/DocZilla" title="DocZilla">DocZilla</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Epiphany_(web_browser)" title="Epiphany (web browser)">Epiphany</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Firefox_for_mobile" title="Firefox for mobile">Firefox for mobile</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Flock_(web_browser)" title="Flock (web browser)">Flock</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Galeon" title="Galeon">Galeon</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/GNU_IceCat" title="GNU IceCat">GNU IceCat</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Gnuzilla" title="Gnuzilla">Gnuzilla</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/K-Meleon" title="K-Meleon">K-Meleon</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Kazehakase" title="Kazehakase">Kazehakase</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Kirix_Strata" title="Kirix Strata">Kirix Strata</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Madfox" title="Madfox">Madfox</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/MicroB" title="MicroB">MicroB</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Minimo" title="Minimo">Minimo</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Mozilla_Application_Suite" title="Mozilla Application Suite">Mozilla</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Mozilla_Firefox" title="Mozilla Firefox">Mozilla Firefox</A> (<I><A href="http://en.wikipedia.org/wiki/Mozilla_Firefox_2" title="Mozilla Firefox 2">2</A></I>, <A href="http://en.wikipedia.org/wiki/Mozilla_Firefox_3" title="Mozilla Firefox 3">3</A>)&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Netscape_(web_browser)" title="Netscape (web browser)">Netscape</A> (<A href="http://en.wikipedia.org/wiki/Netscape_6" title="Netscape 6">6</A>, <A href="http://en.wikipedia.org/wiki/Netscape_(version_7)" title="Netscape (version 7)">7</A>, <A href="http://en.wikipedia.org/wiki/Netscape_Browser" title="Netscape Browser">8</A>, <A href="http://en.wikipedia.org/wiki/Netscape_9" title="Netscape 9" class="mw-redirect">9</A>)</I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/SeaMonkey" title="SeaMonkey">SeaMonkey</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/w/index.php?title=Skipstone&action=edit&redlink=1" class="new" title="Skipstone (page does not exist)">Skipstone</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Sleipnir_(web_browser)" title="Sleipnir (web browser)">Sleipnir</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Swiftfox" title="Swiftfox">Swiftfox</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Swiftweasel" title="Swiftweasel">Swiftweasel</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Wyzo" title="Wyzo">Wyzo</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/XeroBank_Browser" title="XeroBank Browser">XeroBank Browser</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/WebKit" title="WebKit">WebKit</A>-based</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/ABrowse" title="ABrowse">ABrowse</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><STRONG class="selflink">Chrome</STRONG>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Epiphany_(web_browser)" title="Epiphany (web browser)">Epiphany</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Fluid_(browser)" title="Fluid (browser)">Fluid</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/ICab" title="ICab">iCab</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Iris_Browser" title="Iris Browser">Iris Browser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Midori_(web_browser)" title="Midori (web browser)">Midori</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/OmniWeb" title="OmniWeb">OmniWeb</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Origyn_Web_Browser" title="Origyn Web Browser">Origyn Web Browser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Rekonq" title="Rekonq">rekonq</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Web_Browser_for_S60" title="Web Browser for S60">S60 web browser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">Safari</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Shiira" title="Shiira">Shiira</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/w/index.php?title=Skipstone&action=edit&redlink=1" class="new" title="Skipstone (page does not exist)">Skipstone</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/SRWare_Iron" title="SRWare Iron">SRWare Iron</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Stainless_(web_browser)" title="Stainless (web browser)">Stainless</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Steel_(web_browser)" title="Steel (web browser)">Steel</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Teashark" title="Teashark">Teashark</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Uzbl" title="Uzbl">Uzbl</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Presto_(layout_engine)" title="Presto (layout engine)">Presto</A>-based</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">Opera</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Nintendo_DS_Browser" title="Nintendo DS Browser">Nintendo DS Browser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Internet_Channel" title="Internet Channel">Internet Channel</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_Mini" title="Opera Mini">Opera Mini</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_Mobile" title="Opera Mobile">Opera Mobile</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Java_(programming_language)" title="Java (programming language)">Java</A>-based</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/HotJava" title="HotJava">HotJava</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Lobo_(web_browser)" title="Lobo (web browser)">Lobo</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_Mini" title="Opera Mini">Opera Mini</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Teashark" title="Teashark">Teashark</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/UZard_Web" title="UZard Web">uZard Web</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/X-Smiles" title="X-Smiles">X-Smiles</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/KHTML" title="KHTML">KHTML</A>-based</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Konqueror" title="Konqueror">Konqueror</A>&nbsp;<B>·</B> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Konqueror_Embedded" title="Konqueror Embedded">Konqueror Embedded</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Tasman_(layout_engine)" title="Tasman (layout engine)">Tasman</A>-based</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><I><A href="http://en.wikipedia.org/wiki/Internet_Explorer_for_Mac" title="Internet Explorer for Mac">Internet Explorer for Mac</A></I>&nbsp;<B>·</B> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/MSN_for_Mac_OS_X" title="MSN for Mac OS X">MSN for Mac OS X</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Text_user_interface" title="Text user interface">Text user interface</A></TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/ALynx" title="ALynx">ALynx</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Edbrowse" title="Edbrowse">edbrowse</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/ELinks" title="ELinks">ELinks</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Emacs/W3" title="Emacs/W3">Emacs/W3</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Links_(web_browser)" title="Links (web browser)">Links</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Lynx_(web_browser)" title="Lynx (web browser)">Lynx</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Net-Tamer" title="Net-Tamer">Net-Tamer</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/W3m" title="W3m">w3m</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/WebbIE" title="WebbIE">WebbIE</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Mobile_browser" title="Mobile browser">Mobile browser</A></TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Blazer_(web_browser)" title="Blazer (web browser)">Blazer</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Bolt_browser" title="Bolt browser">Bolt browser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Microsoft_Live_Labs_Deepfish" title="Microsoft Live Labs Deepfish">Deepfish</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Firefox_for_mobile" title="Firefox for mobile">Firefox for mobile</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/IbisBrowser" title="IbisBrowser">IbisBrowser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Internet_Explorer_Mobile" title="Internet Explorer Mobile">Internet Explorer Mobile</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Iris_Browser" title="Iris Browser">Iris Browser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/JOCA" title="JOCA">JOCA</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Konqueror_Embedded" title="Konqueror Embedded">Konqueror Embedded</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/MicroB" title="MicroB">MicroB</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Minimo" title="Minimo">Minimo</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/NetFront" title="NetFront">NetFront</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Obigo_Browser" title="Obigo Browser">Obigo Browser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_Mobile" title="Opera Mobile">Opera Mobile</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Pixo" title="Pixo">Pixo</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Web_Browser_for_S60" title="Web Browser for S60">S60 web browser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">Safari</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Skyfire_(web_browser)" title="Skyfire (web browser)">Skyfire</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Steel_(web_browser)" title="Steel (web browser)">Steel</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Teashark" title="Teashark">Teashark</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/ThunderHawk_(web_browser)" title="ThunderHawk (web browser)">ThunderHawk</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/UCWEB" title="UCWEB">UCWEB</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/UZard_Web" title="UZard Web">uZard Web</A>·&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/WinWAP" title="WinWAP">WinWAP</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">
<DIV style="line-height:1.05em;"><A href="http://en.wikipedia.org/wiki/Mobile_browser#Mobile_HTML_transcoders" title="Mobile browser">Mobile HTML<BR>
Transcoder</A></DIV>
</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/JOCA" title="JOCA">JOCA</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_Mini" title="Opera Mini">Opera Mini</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Skyfire_(web_browser)" title="Skyfire (web browser)">Skyfire</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Skweezer" title="Skweezer">Skweezer</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Teashark" title="Teashark">Teashark</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/UZard_Web" title="UZard Web">uZard Web</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Other</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/3B_(3D_web_browser)" title="3B (3D web browser)">3B</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Abaco_(web_browser)" title="Abaco (web browser)">abaco</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Amaya_(web_browser)" title="Amaya (web browser)">Amaya</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Arachne_(web_browser)" title="Arachne (web browser)">Arachne</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Arena_(web_browser)" title="Arena (web browser)">Arena</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/AWeb" title="AWeb">AWeb</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Charon_(web_browser)" title="Charon (web browser)">Charon</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Chimera_(web_browser)" title="Chimera (web browser)">Chimera</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Dillo" title="Dillo">Dillo</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Gazelle_(web_browser)" title="Gazelle (web browser)">Gazelle</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/IBrowse" title="IBrowse">IBrowse</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/KidZui" title="KidZui">KidZui</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Lunascape_(web_browser)" title="Lunascape (web browser)">Lunascape</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Mothra_(web_browser)" title="Mothra (web browser)">Mothra</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/NetPositive" title="NetPositive">NetPositive</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/NetSurf" title="NetSurf">NetSurf</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Oregano_(web_browser)" title="Oregano (web browser)">Oregano</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/TheWorld_Browser" title="TheWorld Browser">TheWorld</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/VMS_Mosaic" title="VMS Mosaic">VMS Mosaic</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Voyager_(web_browser)" title="Voyager (web browser)">Voyager</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Features</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Ad_filtering" title="Ad filtering">Ad filtering</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Download_manager" title="Download manager">Download manager</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Favicon" title="Favicon">Favicon</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Incremental_find" title="Incremental find">Incremental find</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Internet_bookmark" title="Internet bookmark" class="mw-redirect">Internet bookmark</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Livemark" title="Livemark" class="mw-redirect">Livemark</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Privacy_mode" title="Privacy mode">Privacy mode</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Tab_(GUI)" title="Tab (GUI)">Tabbed browsing</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Universal_edit_button" title="Universal edit button" class="mw-redirect">Universal edit button</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Web standards</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/3DMLW" title="3DMLW">3DMLW</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets" title="Cascading Style Sheets">Cascading Style Sheets</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/HTML" title="HTML">HTML</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/HTML_5" title="HTML 5" class="mw-redirect">HTML 5</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/XHTML" title="XHTML">XHTML</A></SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Related articles</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Browser_wars" title="Browser wars">Browser wars</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Site-specific_browser" title="Site-specific browser">Site-specific browser</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Web_page" title="Web page">Web page</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/World_Wide_Web" title="World Wide Web">World Wide Web</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Whole_Internet_User%27s_Guide_and_Catalog" title="Whole Internet User&#39;s Guide and Catalog">Whole Internet User's Guide and Catalog</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Internet_suite" title="Internet suite">Internet suite</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Mobile_Web" title="Mobile Web">Mobile Web</A></SPAN></DIV>
</TD>
</TR>
</TBODY></TABLE>
</TD>
</TR>
</TBODY></TABLE>
<TABLE class="navbox" cellspacing="0" style=";">
<TBODY><TR>
<TD style="padding:2px;">
<TABLE cellspacing="0" class="nowraplinks collapsible autocollapse" style="width:100%;background:transparent;color:inherit;;" id="collapsibleTable2">
<TBODY><TR>
<TH style=";" colspan="2" class="navbox-title"><SPAN class="collapseButton">[<A id="collapseButton2" href="javascript:collapseTable(2);">show</A>]</SPAN>
<DIV style="float:left; width:6em;text-align:left;">
<DIV class="noprint plainlinks navbar" style="background:none; padding:0; font-weight:normal;;;border:none;; font-size:xx-small;"><A href="http://en.wikipedia.org/wiki/Template:Mac_OS_X_web_browsers" title="Template:Mac OS X web browsers"><SPAN title="View this template" style=";;border:none;">v</SPAN></A>&nbsp;<SPAN style="font-size:80%;"></SPAN>&nbsp;<A href="http://en.wikipedia.org/wiki/Template_talk:Mac_OS_X_web_browsers" title="Template talk:Mac OS X web browsers"><SPAN title="Discuss this template" style=";;border:none;">d</SPAN></A>&nbsp;<SPAN style="font-size:80%;"></SPAN>&nbsp;<A href="http://en.wikipedia.org/w/index.php?title=Template:Mac_OS_X_web_browsers&action=edit" class="external text" rel="nofollow"><SPAN title="Edit this template" style=";;border:none;;">e</SPAN></A></DIV>
</DIV>
<SPAN class="" style="font-size:110%;"><A href="http://en.wikipedia.org/wiki/Mac_OS_X" title="Mac OS X">Mac OS X</A> <A href="http://en.wikipedia.org/wiki/Web_browser" title="Web browser">web browsers</A></SPAN></TH>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Mac OS exclusive</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Camino" title="Camino">Camino</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/ICab" title="ICab">iCab</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <I><A href="http://en.wikipedia.org/wiki/Internet_Explorer_for_Mac" title="Internet Explorer for Mac">Internet Explorer for Mac</A></I><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/OmniWeb" title="OmniWeb">OmniWeb</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Shiira" title="Shiira">Shiira</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Stainless_(web_browser)" title="Stainless (web browser)">Stainless</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Cross-platform</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Amaya_(web_browser)" title="Amaya (web browser)">Amaya</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Dillo" title="Dillo">Dillo</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/ELinks" title="ELinks">ELinks</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Epiphany_(web_browser)" title="Epiphany (web browser)">Epiphany</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <STRONG class="selflink">Google Chrome</STRONG><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla_Firefox" title="Mozilla Firefox">Firefox</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Flock_(web_browser)" title="Flock (web browser)">Flock</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Galeon" title="Galeon">Galeon</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Konqueror" title="Konqueror">Konqueror</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Links_(web_browser)" title="Links (web browser)">Links</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Lynx_(web_browser)" title="Lynx (web browser)">Lynx</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Netscape_Navigator_9" title="Netscape Navigator 9"><I>Netscape</I></A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">Opera</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">Safari</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/SeaMonkey" title="SeaMonkey">SeaMonkey</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/W3m" title="W3m">w3m</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Related</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Browser_wars" title="Browser wars">Browser wars</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/HyperCard" title="HyperCard">HyperCard</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Gopher_(protocol)" title="Gopher (protocol)">Gopher</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/E-mail" title="E-mail">E-mail</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Elm_(e-mail_client)" title="Elm (e-mail client)">Elm</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Web_page" title="Web page">Web page</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Viewdata" title="Viewdata">Viewdata</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Teletext" title="Teletext">Teletext</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Videotex" title="Videotex">Videotex</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/X.25" title="X.25">X.25</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Aliweb" title="Aliweb">Aliweb</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/ASCII" title="ASCII">ASCII</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/HTML" title="HTML">HyperText Markup Language</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/HyTelnet" title="HyTelnet">HyTelnet</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/VRML" title="VRML">Virtual Reality Markup Language</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/File_Transfer_Protocol" title="File Transfer Protocol">File Transfer Protocol</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Telnet" title="Telnet">Telnet</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/NLS_(computer_system)" title="NLS (computer system)">NLS</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/NCSA_Telnet" title="NCSA Telnet">NCSA Telnet</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/UUCP" title="UUCP">UUCP</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Usenet" title="Usenet">Usenet</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/ARPANET" title="ARPANET">ARPANET</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/BITNET" title="BITNET">BITNET</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Prodigy_(online_service)" title="Prodigy (online service)">Prodigy</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/CompuServe" title="CompuServe">CompuServe</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/World_Wide_Web" title="World Wide Web">World Wide Web</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Whole_Internet_User%27s_Guide_and_Catalog" title="Whole Internet User&#39;s Guide and Catalog">Whole Internet User's Guide and Catalog</A></DIV>
</TD>
</TR>
</TBODY></TABLE>
</TD>
</TR>
</TBODY></TABLE>
<TABLE class="navbox" cellspacing="0" style=";">
<TBODY><TR>
<TD style="padding:2px;">
<TABLE cellspacing="0" class="nowraplinks collapsible autocollapse" style="width:100%;background:transparent;color:inherit;;" id="collapsibleTable3">
<TBODY><TR>
<TH style=";" colspan="2" class="navbox-title"><SPAN class="collapseButton">[<A id="collapseButton3" href="javascript:collapseTable(3);">show</A>]</SPAN>
<DIV style="float:left; width:6em;text-align:left;">
<DIV class="noprint plainlinks navbar" style="background:none; padding:0; font-weight:normal;;;border:none;; font-size:xx-small;"><A href="http://en.wikipedia.org/wiki/Template:FOSS" title="Template:FOSS"><SPAN title="View this template" style=";;border:none;">v</SPAN></A>&nbsp;<SPAN style="font-size:80%;"></SPAN>&nbsp;<A href="http://en.wikipedia.org/wiki/Template_talk:FOSS" title="Template talk:FOSS"><SPAN title="Discuss this template" style=";;border:none;">d</SPAN></A>&nbsp;<SPAN style="font-size:80%;"></SPAN>&nbsp;<A href="http://en.wikipedia.org/w/index.php?title=Template:FOSS&action=edit" class="external text" rel="nofollow"><SPAN title="Edit this template" style=";;border:none;;">e</SPAN></A></DIV>
</DIV>
<SPAN class="" style="font-size:110%;"><A href="http://en.wikipedia.org/wiki/Free_and_open_source_software" title="Free and open source software">Free and open source software</A></SPAN></TH>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">General</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Copyleft" title="Copyleft">Copyleft</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Category:Free_software_related_events_and_awards" title="Category:Free software related events and awards">Events and Awards</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Free_software" title="Free software">Free software</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/The_Free_Software_Definition" title="The Free Software Definition">Free Software Definition</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Gratis_versus_Libre" title="Gratis versus Libre">Gratis versus Libre</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/List_of_free_and_open_source_software_packages" title="List of free and open source software packages">List of free and open source software packages</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Open_source_software" title="Open source software">Open source software</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Comparison_of_open_source_operating_systems" title="Comparison of open source operating systems">Operating system families</A></TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/AROS_Research_Operating_System" title="AROS Research Operating System">AROS</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Berkeley_Software_Distribution" title="Berkeley Software Distribution">BSD</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Darwin_(operating_system)" title="Darwin (operating system)">Darwin</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/FreeDOS" title="FreeDOS">FreeDOS</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/GNU" title="GNU">GNU</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Haiku_(operating_system)" title="Haiku (operating system)">Haiku</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Inferno_(operating_system)" title="Inferno (operating system)">Inferno</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Linux" title="Linux">Linux</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Mach_(kernel)" title="Mach (kernel)">Mach</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/MINIX" title="MINIX">MINIX</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/OpenSolaris" title="OpenSolaris">OpenSolaris</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Plan_9_from_Bell_Labs" title="Plan 9 from Bell Labs">Plan 9</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/ReactOS" title="ReactOS">ReactOS</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Open_source_software_development" title="Open source software development">Development</A></TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Eclipse_(software)" title="Eclipse (software)">Eclipse</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Free_Pascal" title="Free Pascal">Free Pascal</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/GNU_Compiler_Collection" title="GNU Compiler Collection">GCC</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Java_(programming_language)" title="Java (programming language)">Java</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/LibJIT" title="LibJIT">libJIT</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Low_Level_Virtual_Machine" title="Low Level Virtual Machine">LLVM</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Lua_(programming_language)" title="Lua (programming language)">Lua</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Open64" title="Open64">Open64</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Perl" title="Perl">Perl</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/PHP" title="PHP">PHP</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Python_(programming_language)" title="Python (programming language)">Python</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/ROSE_compiler_framework" title="ROSE compiler framework">ROSE</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Ruby_(programming_language)" title="Ruby (programming language)">Ruby</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Tcl" title="Tcl">Tcl</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/History_of_free_and_open_source_software" title="History of free and open source software">History</A></TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/GNU#History" title="GNU">GNU</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/History_of_Linux" title="History of Linux">Linux</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla" title="Mozilla">Mozilla</A> (<A href="http://en.wikipedia.org/wiki/History_of_Mozilla_Application_Suite" title="History of Mozilla Application Suite">Application Suite</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/History_of_Mozilla_Firefox" title="History of Mozilla Firefox">Firefox</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/History_of_Mozilla_Thunderbird" title="History of Mozilla Thunderbird">Thunderbird</A>)</DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Organizations</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Apache_Software_Foundation" title="Apache Software Foundation">Apache Software Foundation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Blender_Foundation" title="Blender Foundation">Blender Foundation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Eclipse_Foundation" title="Eclipse Foundation">Eclipse Foundation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Freedesktop.org" title="Freedesktop.org">freedesktop.org</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Free_Software_Foundation" title="Free Software Foundation">Free Software Foundation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/GNOME_Foundation" title="GNOME Foundation">GNOME Foundation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/GNU_Project" title="GNU Project">GNU Project</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Code" title="Google Code">Google Code</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Linux_Foundation" title="Linux Foundation">Linux Foundation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla_Foundation" title="Mozilla Foundation">Mozilla Foundation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Open_Source_Initiative" title="Open Source Initiative">Open Source Initiative</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/SourceForge" title="SourceForge">SourceForge</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Symbian_Foundation" title="Symbian Foundation">Symbian Foundation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Xiph.Org_Foundation" title="Xiph.Org Foundation">Xiph.Org Foundation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/X.Org_Foundation" title="X.Org Foundation">X.Org Foundation</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Free_software_licence" title="Free software licence">Licences</A></TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Apache_License" title="Apache License">Apache</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Artistic_License" title="Artistic License">Artistic</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/BSD_licenses" title="BSD licenses">BSD</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/GNU_General_Public_License" title="GNU General Public License">GNU GPL</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License" title="GNU Lesser General Public License">GNU LGPL</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/MIT_License" title="MIT License">MIT</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla_Public_License" title="Mozilla Public License">MPL</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Shared_source#Open_Source_licenses" title="Shared source">Ms-PL/RL</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Zlib_License" title="Zlib License">zlib</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/List_of_FSF_approved_software_licenses" title="List of FSF approved software licenses">FSF approved licenses</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Challenges</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Binary_blob" title="Binary blob">Binary blob</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Digital_rights_management" title="Digital rights management">Digital rights management</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Graphics_hardware_and_FOSS" title="Graphics hardware and FOSS">Graphics hardware compatibility</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/License_proliferation" title="License proliferation">License proliferation</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla_Corporation_software_rebranded_by_the_Debian_project" title="Mozilla Corporation software rebranded by the Debian project">Mozilla software rebranding</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Proprietary_software" title="Proprietary software">Proprietary software</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/SCO-Linux_controversies" title="SCO-Linux controversies">SCO-Linux controversies</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Open_source_software_security" title="Open source software security">Security</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Software_patents_and_free_software" title="Software patents and free software">Software patents</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Tivoization" title="Tivoization">Tivoization</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Trusted_Computing" title="Trusted Computing">Trusted Computing</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Viral_license" title="Viral license">Viral license</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Other topics</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Alternative_terms_for_free_software" title="Alternative terms for free software">Alternative terms</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Free_software_community" title="Free software community">Community</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Linux_distribution" title="Linux distribution">Linux distribution</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Fork_(software_development)" title="Fork (software development)">Forking</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Free_software_movement" title="Free software movement">Movement</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Microsoft_Open_Specification_Promise" title="Microsoft Open Specification Promise">Microsoft Open Specification Promise</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <I><A href="http://en.wikipedia.org/wiki/Revolution_OS" title="Revolution OS">Revolution OS</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN></I> <A href="http://en.wikipedia.org/wiki/Comparison_of_open_source_and_closed_source" title="Comparison of open source and closed source">Comparison with closed source</A></DIV>
</TD>
</TR>
</TBODY></TABLE>
</TD>
</TR>
</TBODY></TABLE>
<TABLE class="navbox" cellspacing="0" style=";">
<TBODY><TR>
<TD style="padding:2px;">
<TABLE cellspacing="0" class="nowraplinks collapsible autocollapse" style="width:100%;background:transparent;color:inherit;;" id="collapsibleTable4">
<TBODY><TR>
<TH style=";" colspan="2" class="navbox-title"><SPAN class="collapseButton">[<A id="collapseButton4" href="javascript:collapseTable(4);">show</A>]</SPAN>
<DIV style="float:left; width:6em;text-align:left;">
<DIV class="noprint plainlinks navbar" style="background:none; padding:0; font-weight:normal;;;border:none;; font-size:xx-small;"><A href="http://en.wikipedia.org/wiki/Template:Rich_Internet_applications" title="Template:Rich Internet applications"><SPAN title="View this template" style=";;border:none;">v</SPAN></A>&nbsp;<SPAN style="font-size:80%;"></SPAN>&nbsp;<A href="http://en.wikipedia.org/wiki/Template_talk:Rich_Internet_applications" title="Template talk:Rich Internet applications"><SPAN title="Discuss this template" style=";;border:none;">d</SPAN></A>&nbsp;<SPAN style="font-size:80%;"></SPAN>&nbsp;<A href="http://en.wikipedia.org/w/index.php?title=Template:Rich_Internet_applications&action=edit" class="external text" rel="nofollow"><SPAN title="Edit this template" style=";;border:none;;">e</SPAN></A></DIV>
</DIV>
<SPAN class="" style="font-size:110%;"><A href="http://en.wikipedia.org/wiki/Rich_Internet_application" title="Rich Internet application">Rich Internet applications</A></SPAN></TH>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Basic frameworks</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Adobe_Flex" title="Adobe Flex">Adobe Flex</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Apache_Pivot" title="Apache Pivot">Apache Pivot</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Curl_(programming_language)" title="Curl (programming language)">Curl</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Google_App_Engine" title="Google App Engine">Google App Engine</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/JavaFX" title="JavaFX">JavaFX</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Microsoft_Silverlight" title="Microsoft Silverlight">Silverlight</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/SproutCore" title="SproutCore">SproutCore</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Cappuccino_(Application_Development_Framework)" title="Cappuccino (Application Development Framework)" class="mw-redirect">Cappuccino</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/XULRunner" title="XULRunner">XULRunner</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;"><A href="http://en.wikipedia.org/wiki/Site-specific_browser" title="Site-specific browser">SSB</A> platforms</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-even">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Adobe_Integrated_Runtime" title="Adobe Integrated Runtime">Adobe Integrated Runtime</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla_Prism" title="Mozilla Prism">Mozilla Prism</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <STRONG class="selflink">Google Chrome</STRONG> <SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Fluid_(browser)" title="Fluid (browser)">Fluid</A></DIV>
</TD>
</TR>
<TR style="height: 2px; display: none; ">
<TD>
</TR>
<TR style="display: none; ">
<TD class="navbox-group" style=";;">Related</TD>
<TD style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;;;" class="navbox-list navbox-odd">
<DIV style="padding:0em 0.25em"><A href="http://en.wikipedia.org/wiki/Web_application_framework" title="Web application framework">Web application framework</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Fat_client" title="Fat client">Fat client</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Vector_graphics" title="Vector graphics">Vector graphics</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/JavaScript" title="JavaScript">JavaScript</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Layout_engine" title="Layout engine">Layout engine</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Run-time_system" title="Run-time system">Runtime</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Widget_engine" title="Widget engine">Widget engine</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/ActiveX" title="ActiveX">ActiveX</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/Java_applet" title="Java applet">Java applet</A><SPAN style="font-weight:bold;">&nbsp;·</SPAN> <A href="http://en.wikipedia.org/wiki/User_interface_markup_language" title="User interface markup language">User interface markup language</A></DIV>
</TD>
</TR>
</TBODY></TABLE>
</TD>
</TR>
</TBODY></TABLE>


<!-- 
NewPP limit report
Preprocessor node count: 41873/1000000
Post-expand include size: 477423/2048000 bytes
Template argument size: 189501/2048000 bytes
Expensive parser function count: 8/500
-->

<!-- Saved in parser cache with key enwiki:pcache:idhash:19133401-0!1!0!default!!en!2 and timestamp 20091215023111 -->
<DIV class="printfooter">
Retrieved from "<A href="./chrome_wikipedia_ORIGINAL_files/chrome_wikipedia_ORIGINAL.html">http://en.wikipedia.org/wiki/Google_Chrome</A>"</DIV>
			<DIV id="catlinks" class="catlinks"><DIV id="mw-normal-catlinks"><A href="http://en.wikipedia.org/wiki/Special:Categories" title="Special:Categories">Categories</A>: <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:2008_software" title="Category:2008 software">2008 software</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:C%2B%2B_software" title="Category:C++ software">C++ software</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Cloud_clients" title="Category:Cloud clients">Cloud clients</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Free_web_browsers" title="Category:Free web browsers">Free web browsers</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Google_services" title="Category:Google services">Google services</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Windows_web_browsers" title="Category:Windows web browsers">Windows web browsers</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Software_based_on_Webkit" title="Category:Software based on Webkit">Software based on Webkit</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Site-specific_browsing" title="Category:Site-specific browsing">Site-specific browsing</A></SPAN></DIV><DIV id="mw-hidden-catlinks" class="mw-hidden-cats-hidden">Hidden categories: <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:All_articles_with_dead_external_links" title="Category:All articles with dead external links">All articles with dead external links</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Articles_with_dead_external_links_from_May_2009" title="Category:Articles with dead external links from May 2009">Articles with dead external links from May 2009</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Articles_containing_potentially_dated_statements_from_December_2009" title="Category:Articles containing potentially dated statements from December 2009">Articles containing potentially dated statements from December 2009</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:All_articles_containing_potentially_dated_statements" title="Category:All articles containing potentially dated statements">All articles containing potentially dated statements</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:All_articles_with_unsourced_statements" title="Category:All articles with unsourced statements">All articles with unsourced statements</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Articles_with_unsourced_statements_from_September_2009" title="Category:Articles with unsourced statements from September 2009">Articles with unsourced statements from September 2009</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Articles_with_unsourced_statements_from_November_2009" title="Category:Articles with unsourced statements from November 2009">Articles with unsourced statements from November 2009</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Articles_with_unsourced_statements_from_March_2009" title="Category:Articles with unsourced statements from March 2009">Articles with unsourced statements from March 2009</A></SPAN></DIV></DIV>			<!-- end content -->
						<DIV class="visualClear"></DIV>
		</DIV>
	</DIV>
		</DIV>
		<DIV id="column-one">
	<DIV id="p-cactions" class="portlet">
		<H5>Views</H5>
		<DIV class="pBody">
			<UL lang="en" xml:lang="en">
	
				 <LI id="ca-nstab-main" class="selected"><A href="./chrome_wikipedia_ORIGINAL_files/chrome_wikipedia_ORIGINAL.html" title="View the content page [alt-c]" accesskey="c">Article</A></LI>
				 <LI id="ca-talk"><A href="http://en.wikipedia.org/wiki/Talk:Google_Chrome" title="Discussion about the content page [alt-t]" accesskey="t">Discussion</A></LI>
				 <LI id="ca-edit"><A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=edit" title="You can edit this page. 
Please use the preview button before saving. [alt-e]" accesskey="e">Edit this page</A></LI>
				 <LI id="ca-history"><A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&action=history" title="Past versions of this page [alt-h]" accesskey="h">History</A></LI>			</UL>
		</DIV>
	</DIV>
	<DIV class="portlet" id="p-personal">
		<H5>Personal tools</H5>
		<DIV class="pBody">
			<UL lang="en" xml:lang="en">
				<LI id="pt-optin-try"><A href="http://en.wikipedia.org/w/index.php?title=Special:UsabilityInitiativeOptIn&from=Google_Chrome" title="Try out new features" class="no-text-transform">Try Beta</A></LI>
				<LI id="pt-login"><A href="http://en.wikipedia.org/w/index.php?title=Special:UserLogin&returnto=Google_Chrome" title="You are encouraged to log in; however, it is not mandatory. [alt-o]" accesskey="o">Log in / create account</A></LI>
			</UL>
		</DIV>
	</DIV>
	<DIV class="portlet" id="p-logo">
		<A style="background-image: url(http://upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png);" href="http://en.wikipedia.org/wiki/Main_Page" title="Visit the main page"></A>
	</DIV>
	<SCRIPT type="text/javascript"> if (window.isMSIE55) fixalpha(); </SCRIPT>
	<DIV class="generated-sidebar portlet" id="p-navigation">
		<H5 lang="en" xml:lang="en">Navigation</H5>
		<DIV class="pBody">
			<UL>
				<LI id="n-mainpage-description"><A href="http://en.wikipedia.org/wiki/Main_Page" title="Visit the main page [alt-z]" accesskey="z">Main page</A></LI>
				<LI id="n-contents"><A href="http://en.wikipedia.org/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</A></LI>
				<LI id="n-featuredcontent"><A href="http://en.wikipedia.org/wiki/Portal:Featured_content" title="Featured content &mdash; the best of Wikipedia">Featured content</A></LI>
				<LI id="n-currentevents"><A href="http://en.wikipedia.org/wiki/Portal:Current_events" title="Find background information on current events">Current events</A></LI>
				<LI id="n-randompage"><A href="http://en.wikipedia.org/wiki/Special:Random" title="Load a random article [alt-x]" accesskey="x">Random article</A></LI>
			</UL>
		</DIV>
	</DIV>
	<DIV id="p-search" class="portlet">
		<H5 lang="en" xml:lang="en"><LABEL for="searchInput">Search</LABEL></H5>
		<DIV id="searchBody" class="pBody">
			<FORM action="http://en.wikipedia.org/w/index.php" id="searchform">
				<INPUT type="hidden" name="title" value="Special:Search">
				<INPUT id="searchInput" title="Search Wikipedia" accesskey="f" value="" name="search" autocomplete="off">
				<INPUT type="submit" name="go" class="searchButton" id="searchGoButton" value="Go" title="Go to a page with this exact name if one exists">&nbsp;
				<INPUT type="submit" name="fulltext" class="searchButton" id="mw-searchButton" value="Search" title="Search Wikipedia for this text">
			</FORM>
		</DIV>
	</DIV>
	<DIV class="generated-sidebar portlet" id="p-interaction">
		<H5 lang="en" xml:lang="en">Interaction</H5>
		<DIV class="pBody">
			<UL>
				<LI id="n-aboutsite"><A href="http://en.wikipedia.org/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</A></LI>
				<LI id="n-portal"><A href="http://en.wikipedia.org/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="http://en.wikipedia.org/wiki/Special:RecentChanges" title="The list of recent changes in the wiki [alt-r]" accesskey="r">Recent changes</A></LI>
				<LI id="n-contact"><A href="http://en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia">Contact Wikipedia</A></LI>
				<LI id="n-sitesupport"><A href="http://wikimediafoundation.org/wiki/Support_Wikipedia/en" title="Support us">Donate to Wikipedia</A></LI>
				<LI id="n-help"><A href="http://en.wikipedia.org/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</A></LI>
			</UL>
		</DIV>
	</DIV>
	<DIV class="portlet" id="p-tb">
		<H5 lang="en" xml:lang="en">Toolbox</H5>
		<DIV class="pBody">
			<UL>
				<LI id="t-whatlinkshere"><A href="http://en.wikipedia.org/wiki/Special:WhatLinksHere/Google_Chrome" title="List of all English Wikipedia pages containing links to this page [alt-j]" accesskey="j">What links here</A></LI>
				<LI id="t-recentchangeslinked"><A href="http://en.wikipedia.org/wiki/Special:RecentChangesLinked/Google_Chrome" title="Recent changes in pages linked from this page [alt-k]" accesskey="k">Related changes</A></LI>
<LI id="t-upload"><A href="http://en.wikipedia.org/wiki/Wikipedia:Upload" title="Upload files [alt-u]" accesskey="u">Upload file</A></LI>
<LI id="t-specialpages"><A href="http://en.wikipedia.org/wiki/Special:SpecialPages" title="List of all special pages [alt-q]" accesskey="q">Special pages</A></LI>
				<LI id="t-print"><A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&printable=yes" rel="alternate" title="Printable version of this page [alt-p]" accesskey="p">Printable version</A></LI>				<LI id="t-permalink"><A href="http://en.wikipedia.org/w/index.php?title=Google_Chrome&oldid=331718437" title="Permanent link to this revision of the page">Permanent link</A></LI><LI id="t-cite"><A href="http://en.wikipedia.org/w/index.php?title=Special:Cite&page=Google_Chrome&id=331718437" title="Information on how to cite this page">Cite this page</A></LI>			</UL>
		</DIV>
	</DIV>
	<DIV id="p-lang" class="portlet">
		<H5 lang="en" xml:lang="en">Languages</H5>
		<DIV class="pBody">
			<UL>
				<LI class="interwiki-af"><A href="http://af.wikipedia.org/wiki/Google_Chrome">Afrikaans</A></LI>
				<LI class="interwiki-ar"><A href="http://ar.wikipedia.org/wiki/%D8%AC%D9%88%D8%AC%D9%84_%D9%83%D8%B1%D9%88%D9%85">العربية</A></LI>
				<LI class="interwiki-bn"><A href="http://bn.wikipedia.org/wiki/%E0%A6%95%E0%A7%8D%E0%A6%B0%E0%A7%8B%E0%A6%AE">বাংলা</A></LI>
				<LI class="interwiki-be-x-old"><A href="http://be-x-old.wikipedia.org/wiki/Google_Chrome">Беларуская (тарашкевіца)</A></LI>
				<LI class="interwiki-bg"><A href="http://bg.wikipedia.org/wiki/Google_Chrome">Български</A></LI>
				<LI class="interwiki-ca"><A href="http://ca.wikipedia.org/wiki/Google_Chrome">Català</A></LI>
				<LI class="interwiki-cs"><A href="http://cs.wikipedia.org/wiki/Google_Chrome">Česky</A></LI>
				<LI class="interwiki-da"><A href="http://da.wikipedia.org/wiki/Google_Chrome">Dansk</A></LI>
				<LI class="interwiki-de"><A href="http://de.wikipedia.org/wiki/Google_Chrome">Deutsch</A></LI>
				<LI class="interwiki-et"><A href="http://et.wikipedia.org/wiki/Google_Chrome">Eesti</A></LI>
				<LI class="interwiki-es"><A href="http://es.wikipedia.org/wiki/Google_Chrome">Español</A></LI>
				<LI class="interwiki-eo"><A href="http://eo.wikipedia.org/wiki/Google_Chrome">Esperanto</A></LI>
				<LI class="interwiki-eu"><A href="http://eu.wikipedia.org/wiki/Google_Chrome">Euskara</A></LI>
				<LI class="interwiki-fa"><A href="http://fa.wikipedia.org/wiki/%DA%AF%D9%88%DA%AF%D9%84_%DA%A9%D8%B1%D9%88%D9%85">فارسی</A></LI>
				<LI class="interwiki-fr"><A href="http://fr.wikipedia.org/wiki/Google_Chrome">Français</A></LI>
				<LI class="interwiki-ko"><A href="http://ko.wikipedia.org/wiki/%EA%B5%AC%EA%B8%80_%ED%81%AC%EB%A1%AC">한국어</A></LI>
				<LI class="interwiki-hy"><A href="http://hy.wikipedia.org/wiki/%D4%B3%D5%B8%D6%82%D5%A3%D5%AC_%D5%94%D6%80%D5%B8%D5%B4">Հայերեն</A></LI>
				<LI class="interwiki-hi"><A href="http://hi.wikipedia.org/wiki/%E0%A4%97%E0%A5%82%E0%A4%97%E0%A4%B2_%E0%A4%95%E0%A5%8D%E0%A4%B0%E0%A5%8B%E0%A4%AE">हिन्दी</A></LI>
				<LI class="interwiki-hsb"><A href="http://hsb.wikipedia.org/wiki/Google_Chrome">Hornjoserbsce</A></LI>
				<LI class="interwiki-hr"><A href="http://hr.wikipedia.org/wiki/Google_Chrome">Hrvatski</A></LI>
				<LI class="interwiki-id"><A href="http://id.wikipedia.org/wiki/Google_Chrome">Bahasa Indonesia</A></LI>
				<LI class="interwiki-is"><A href="http://is.wikipedia.org/wiki/Google_Chrome">Íslenska</A></LI>
				<LI class="interwiki-it"><A href="http://it.wikipedia.org/wiki/Google_Chrome">Italiano</A></LI>
				<LI class="interwiki-he"><A href="http://he.wikipedia.org/wiki/%D7%92%D7%95%D7%92%D7%9C_%D7%9B%D7%A8%D7%95%D7%9D">עברית</A></LI>
				<LI class="interwiki-ka"><A href="http://ka.wikipedia.org/wiki/Google_Chrome">ქართული</A></LI>
				<LI class="interwiki-ht"><A href="http://ht.wikipedia.org/wiki/Google_chrome">Kreyòl ayisyen</A></LI>
				<LI class="interwiki-lt"><A href="http://lt.wikipedia.org/wiki/Google_Chrome">Lietuvių</A></LI>
				<LI class="interwiki-li"><A href="http://li.wikipedia.org/wiki/Google_Chrome">Limburgs</A></LI>
				<LI class="interwiki-hu"><A href="http://hu.wikipedia.org/wiki/Google_Chrome">Magyar</A></LI>
				<LI class="interwiki-ml"><A href="http://ml.wikipedia.org/wiki/%E0%B4%97%E0%B5%82%E0%B4%97%E0%B4%BF%E0%B4%B3%E0%B5%8D%E2%80%8D_%E0%B4%95%E0%B5%8D%E0%B4%B0%E0%B5%8B%E0%B4%82">മലയാളം</A></LI>
				<LI class="interwiki-mr"><A href="http://mr.wikipedia.org/wiki/%E0%A4%97%E0%A5%82%E0%A4%97%E0%A4%B2_%E0%A4%95%E0%A5%8D%E0%A4%B0%E0%A5%8B%E0%A4%AE">मराठी</A></LI>
				<LI class="interwiki-ms"><A href="http://ms.wikipedia.org/wiki/Google_Chrome">Bahasa Melayu</A></LI>
				<LI class="interwiki-nl"><A href="http://nl.wikipedia.org/wiki/Google_Chrome">Nederlands</A></LI>
				<LI class="interwiki-ja"><A href="http://ja.wikipedia.org/wiki/Google_Chrome">日本語</A></LI>
				<LI class="interwiki-no"><A href="http://no.wikipedia.org/wiki/Google_Chrome">‪Norsk (bokmål)‬</A></LI>
				<LI class="interwiki-nn"><A href="http://nn.wikipedia.org/wiki/Google_Chrome">‪Norsk (nynorsk)‬</A></LI>
				<LI class="interwiki-oc"><A href="http://oc.wikipedia.org/wiki/Google_Chrome">Occitan</A></LI>
				<LI class="interwiki-uz"><A href="http://uz.wikipedia.org/wiki/Google_Chrome">O'zbek</A></LI>
				<LI class="interwiki-pl"><A href="http://pl.wikipedia.org/wiki/Google_Chrome">Polski</A></LI>
				<LI class="interwiki-pt"><A href="http://pt.wikipedia.org/wiki/Google_Chrome">Português</A></LI>
				<LI class="interwiki-ro"><A href="http://ro.wikipedia.org/wiki/Google_Chrome">Română</A></LI>
				<LI class="interwiki-ru"><A href="http://ru.wikipedia.org/wiki/Google_Chrome">Русский</A></LI>
				<LI class="interwiki-sq"><A href="http://sq.wikipedia.org/wiki/Google_Chrome">Shqip</A></LI>
				<LI class="interwiki-simple"><A href="http://simple.wikipedia.org/wiki/Google_Chrome">Simple English</A></LI>
				<LI class="interwiki-sk"><A href="http://sk.wikipedia.org/wiki/Google_Chrome">Slovenčina</A></LI>
				<LI class="interwiki-sl"><A href="http://sl.wikipedia.org/wiki/Google_Chrome">Slovenščina</A></LI>
				<LI class="interwiki-sr"><A href="http://sr.wikipedia.org/wiki/Google_Chrome">Српски / Srpski</A></LI>
				<LI class="interwiki-fi"><A href="http://fi.wikipedia.org/wiki/Google_Chrome">Suomi</A></LI>
				<LI class="interwiki-sv"><A href="http://sv.wikipedia.org/wiki/Google_Chrome">Svenska</A></LI>
				<LI class="interwiki-ta"><A href="http://ta.wikipedia.org/wiki/%E0%AE%95%E0%AF%82%E0%AE%95%E0%AE%BF%E0%AE%B3%E0%AF%8D_%E0%AE%95%E0%AF%81%E0%AE%B0%E0%AF%8B%E0%AE%AE%E0%AF%8D">தமிழ்</A></LI>
				<LI class="interwiki-th"><A href="http://th.wikipedia.org/wiki/%E0%B8%81%E0%B8%B9%E0%B9%80%E0%B8%81%E0%B8%B4%E0%B8%A5_%E0%B9%82%E0%B8%84%E0%B8%A3%E0%B8%A1">ไทย</A></LI>
				<LI class="interwiki-tr"><A href="http://tr.wikipedia.org/wiki/Google_Chrome">Türkçe</A></LI>
				<LI class="interwiki-uk"><A href="http://uk.wikipedia.org/wiki/Google_Chrome">Українська</A></LI>
				<LI class="interwiki-vi"><A href="http://vi.wikipedia.org/wiki/Google_Chrome">Tiếng Việt</A></LI>
				<LI class="interwiki-wuu"><A href="http://wuu.wikipedia.org/wiki/%E8%B0%B7%E6%AD%8C%E9%93%AC%E7%BE%8E">吴语</A></LI>
				<LI class="interwiki-zh-yue"><A href="http://zh-yue.wikipedia.org/wiki/Google_Chrome">粵語</A></LI>
				<LI class="interwiki-zh"><A href="http://zh.wikipedia.org/wiki/Google_Chrome">中文</A></LI>
			</UL>
		</DIV>
	</DIV>
		</DIV><!-- end of the left (by default at least) column -->
			<DIV class="visualClear"></DIV>
			<DIV id="footer">
				<DIV id="f-poweredbyico"><A href="http://www.mediawiki.org/"><IMG src="./chrome_wikipedia_ORIGINAL_files/poweredby_mediawiki_88x31.png" height="31" width="88" alt="Powered by MediaWiki"></A></DIV>
				<DIV id="f-copyrightico"><A href="http://wikimediafoundation.org/"><IMG src="./chrome_wikipedia_ORIGINAL_files/wikimedia-button.png" width="88" height="31" alt="Wikimedia Foundation"></A></DIV>
			<UL id="f-list">
					<LI id="lastmod"> This page was last modified on 15 December 2009 at 00:55.</LI>
					<LI id="copyright">Text is available under the <A rel="license" href="http://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="http://creativecommons.org/licenses/by-sa/3.0/" style="display:none;"></A>;
additional terms may apply.
See <A href="http://wikimediafoundation.org/wiki/Terms_of_Use">Terms of Use</A> for details.<BR>
Wikipedia® is a registered trademark of the <A href="http://www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</A>, a non-profit organization.</LI><LI><A class="internal" href="http://en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact us</A></LI>
					<LI id="privacy"><A href="http://wikimediafoundation.org/wiki/Privacy_policy" title="wikimedia:Privacy policy">Privacy policy</A></LI>
					<LI id="about"><A href="http://en.wikipedia.org/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</A></LI>
					<LI id="disclaimer"><A href="http://en.wikipedia.org/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</A></LI>
			</UL>
		</DIV>
</DIV>

<SCRIPT type="text/javascript">if (window.runOnloadHook) runOnloadHook();</SCRIPT>
<!-- Served by srv159 in 0.063 secs. -->
</BODY></HTML>