summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-14 19:36:32 +0000
committerjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-14 19:36:32 +0000
commit0bedb8a46053e44f667da0e800568c38e2150e4a (patch)
treecd14724a4078a65970c56e97cbd7c5a904c2f14c /chrome
parent6fa508a1cef4a920f570174c77eafc5f21d808eb (diff)
downloadchromium_src-0bedb8a46053e44f667da0e800568c38e2150e4a.zip
chromium_src-0bedb8a46053e44f667da0e800568c38e2150e4a.tar.gz
chromium_src-0bedb8a46053e44f667da0e800568c38e2150e4a.tar.bz2
This CL contains the back-end implementation of the translate feature. It adds a Translate method to the renderer.
On invocation this method triggers a traversal of the DOM page to retrieve the text nodes. The text node contents are then sent to the browser for actual translation (at this point, we just up-case the text for testing purpose). The browser sends back the translated text to the renderer that replace the DOM text node values with the translated text. BUG=None TEST=Run the unit-tests. Review URL: http://codereview.chromium.org/547013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36258 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/renderer_host/resource_message_filter.cc11
-rw-r--r--chrome/browser/renderer_host/resource_message_filter.h7
-rw-r--r--chrome/browser/renderer_host/translation_service.cc29
-rw-r--r--chrome/browser/renderer_host/translation_service.h36
-rwxr-xr-xchrome/chrome_browser.gypi2
-rwxr-xr-xchrome/chrome_renderer.gypi5
-rwxr-xr-xchrome/chrome_tests.gypi1
-rw-r--r--chrome/common/render_messages.h64
-rw-r--r--chrome/common/render_messages_internal.h13
-rw-r--r--chrome/renderer/render_view.cc17
-rw-r--r--chrome/renderer/render_view.h13
-rw-r--r--chrome/renderer/translate/page_translator.cc184
-rw-r--r--chrome/renderer/translate/page_translator.h95
-rw-r--r--chrome/renderer/translate/page_translator_unittest.cc212
-rw-r--r--chrome/renderer/translate/text_translator.h49
-rw-r--r--chrome/renderer/translate/text_translator_impl.cc40
-rw-r--r--chrome/renderer/translate/text_translator_impl.h51
-rw-r--r--chrome/test/data/translate/basic_ORIGINAL.html32
-rw-r--r--chrome/test/data/translate/basic_TRANSLATED.html33
-rw-r--r--chrome/test/data/translate/chrome_wikipedia_ORIGINAL.html1430
-rw-r--r--chrome/test/data/translate/chrome_wikipedia_TRANSLATED.html1430
-rw-r--r--chrome/test/data/translate/reverse_text.py223
22 files changed, 3975 insertions, 2 deletions
diff --git a/chrome/browser/renderer_host/resource_message_filter.cc b/chrome/browser/renderer_host/resource_message_filter.cc
index 66625f5..5c46a53 100644
--- a/chrome/browser/renderer_host/resource_message_filter.cc
+++ b/chrome/browser/renderer_host/resource_message_filter.cc
@@ -189,7 +189,8 @@ ResourceMessageFilter::ResourceMessageFilter(
host_zoom_map_(profile->GetHostZoomMap()),
off_the_record_(profile->IsOffTheRecord()),
next_route_id_callback_(NewCallbackWithReturnValue(
- render_widget_helper, &RenderWidgetHelper::GetNextRoutingID)) {
+ render_widget_helper, &RenderWidgetHelper::GetNextRoutingID)),
+ ALLOW_THIS_IN_INITIALIZER_LIST(translation_service_(this)) {
DCHECK(request_context_);
DCHECK(media_request_context_);
DCHECK(audio_renderer_host_.get());
@@ -405,6 +406,7 @@ bool ResourceMessageFilter::OnMessageReceived(const IPC::Message& msg) {
IPC_MESSAGE_HANDLER(ViewHostMsg_Keygen, OnKeygen)
IPC_MESSAGE_HANDLER_DELAY_REPLY(ViewHostMsg_GetExtensionMessageBundle,
OnGetExtensionMessageBundle)
+ IPC_MESSAGE_HANDLER(ViewHostMsg_TranslateText, OnTranslateText)
#if defined(USE_TCMALLOC)
IPC_MESSAGE_HANDLER(ViewHostMsg_RendererTcmalloc, OnRendererTcmalloc)
#endif
@@ -1189,6 +1191,13 @@ void ResourceMessageFilter::OnKeygen(uint32 key_size_index,
*signed_public_key = keygen_handler->GenKeyAndSignChallenge();
}
+void ResourceMessageFilter::OnTranslateText(
+ ViewHostMsg_TranslateTextParam param) {
+ translation_service_.Translate(param.routing_id, param.work_id,
+ param.text_chunks, param.from_language,
+ param.to_language, param.secure);
+}
+
#if defined(USE_TCMALLOC)
void ResourceMessageFilter::OnRendererTcmalloc(base::ProcessId pid,
const std::string& output) {
diff --git a/chrome/browser/renderer_host/resource_message_filter.h b/chrome/browser/renderer_host/resource_message_filter.h
index 15b06f7..4a97cb4 100644
--- a/chrome/browser/renderer_host/resource_message_filter.h
+++ b/chrome/browser/renderer_host/resource_message_filter.h
@@ -24,8 +24,10 @@
#include "build/build_config.h"
#include "chrome/browser/net/resolve_proxy_msg_helper.h"
#include "chrome/browser/renderer_host/resource_dispatcher_host.h"
+#include "chrome/browser/renderer_host/translation_service.h"
#include "chrome/common/nacl_types.h"
#include "chrome/common/notification_registrar.h"
+#include "chrome/common/render_messages.h"
#include "chrome/common/transport_dib.h"
#include "ipc/ipc_channel_proxy.h"
#include "third_party/WebKit/WebKit/chromium/public/WebCache.h"
@@ -304,6 +306,8 @@ class ResourceMessageFilter : public IPC::ChannelProxy::MessageFilter,
const std::string& default_locale,
IPC::Message* reply_msg);
+ void OnTranslateText(ViewHostMsg_TranslateTextParam param);
+
#if defined(OS_LINUX)
void SendDelayedReply(IPC::Message* reply_msg);
void DoOnGetScreenInfo(gfx::NativeViewId view, IPC::Message* reply_msg);
@@ -391,6 +395,9 @@ class ResourceMessageFilter : public IPC::ChannelProxy::MessageFilter,
// A callback to create a routing id for the associated renderer process.
scoped_ptr<CallbackWithReturnValue<int>::Type> next_route_id_callback_;
+ // Used to translate page contents from one language to another.
+ TranslationService translation_service_;
+
DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter);
};
diff --git a/chrome/browser/renderer_host/translation_service.cc b/chrome/browser/renderer_host/translation_service.cc
new file mode 100644
index 0000000..af5e7a9
--- /dev/null
+++ b/chrome/browser/renderer_host/translation_service.cc
@@ -0,0 +1,29 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/renderer_host/translation_service.h"
+
+#include "base/string_util.h"
+#include "chrome/browser/renderer_host/resource_message_filter.h"
+#include "chrome/common/render_messages.h"
+
+TranslationService::TranslationService(ResourceMessageFilter* filter)
+ : resource_message_filter_(filter) {
+}
+
+void TranslationService::Translate(int routing_id,
+ int work_id,
+ const std::vector<string16>& text_chunks,
+ std::string from_language,
+ std::string to_language,
+ bool secure) {
+ std::vector<string16> translated_text;
+ for (std::vector<string16>::const_iterator iter = text_chunks.begin();
+ iter != text_chunks.end(); ++iter) {
+ translated_text.push_back(StringToUpperASCII(*iter));
+ }
+ resource_message_filter_->Send(
+ new ViewMsg_TranslateTextReponse(routing_id, work_id,
+ 0, translated_text));
+}
diff --git a/chrome/browser/renderer_host/translation_service.h b/chrome/browser/renderer_host/translation_service.h
new file mode 100644
index 0000000..a8e8429
--- /dev/null
+++ b/chrome/browser/renderer_host/translation_service.h
@@ -0,0 +1,36 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_RENDERER_HOST_TRANSLATION_SERVICE_H_
+#define CHROME_BROWSER_RENDERER_HOST_TRANSLATION_SERVICE_H_
+
+#include <string>
+#include <vector>
+
+#include "base/string16.h"
+
+class ResourceMessageFilter;
+
+// The TranslationService class is used to translate text.
+// This temporary implementation only upcases the text sent to it.
+class TranslationService {
+ public:
+ explicit TranslationService(ResourceMessageFilter* resource_msg_filter);
+
+ // Translates the passed text chunks and sends a
+ // ViewMsg_TranslateTextReponse message on the renderer at |routing_id|.
+ void Translate(int routing_id,
+ int work_id,
+ const std::vector<string16>& text_chunks,
+ std::string from_language,
+ std::string to_language,
+ bool secure);
+
+ private:
+ ResourceMessageFilter* resource_message_filter_;
+
+ DISALLOW_COPY_AND_ASSIGN(TranslationService);
+};
+
+#endif // CHROME_BROWSER_RENDERER_HOST_TRANSLATION_SERVICE_H_
diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi
index 2257aa5..6a2d877 100755
--- a/chrome/chrome_browser.gypi
+++ b/chrome/chrome_browser.gypi
@@ -1414,6 +1414,8 @@
'browser/renderer_host/socket_stream_host.h',
'browser/renderer_host/sync_resource_handler.cc',
'browser/renderer_host/sync_resource_handler.h',
+ 'browser/renderer_host/translation_service.h',
+ 'browser/renderer_host/translation_service.cc',
'browser/renderer_host/web_cache_manager.cc',
'browser/renderer_host/web_cache_manager.h',
'browser/renderer_host/x509_user_cert_resource_handler.cc',
diff --git a/chrome/chrome_renderer.gypi b/chrome/chrome_renderer.gypi
index b6a44b1..baac651 100755
--- a/chrome/chrome_renderer.gypi
+++ b/chrome/chrome_renderer.gypi
@@ -123,6 +123,11 @@
'renderer/spellchecker/spellcheck.h',
'renderer/spellchecker/spellcheck_worditerator.cc',
'renderer/spellchecker/spellcheck_worditerator.h',
+ 'renderer/translate/text_translator.h',
+ 'renderer/translate/text_translator_impl.cc',
+ 'renderer/translate/text_translator_impl.h',
+ 'renderer/translate/page_translator.cc',
+ 'renderer/translate/page_translator.h',
'renderer/user_script_idle_scheduler.cc',
'renderer/user_script_idle_scheduler.h',
'renderer/user_script_slave.cc',
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi
index ca20f5d..e82d3c9 100755
--- a/chrome/chrome_tests.gypi
+++ b/chrome/chrome_tests.gypi
@@ -850,6 +850,7 @@
'renderer/render_widget_unittest.cc',
'renderer/renderer_main_unittest.cc',
'renderer/spellchecker/spellcheck_unittest.cc',
+ 'renderer/translate/page_translator_unittest.cc',
'test/browser_with_test_window_test.cc',
'test/browser_with_test_window_test.h',
'test/file_test_utils.cc',
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
index 3bd76e5..3934b53 100644
--- a/chrome/common/render_messages.h
+++ b/chrome/common/render_messages.h
@@ -534,6 +534,31 @@ struct ViewMsg_ExecuteCode_Params {
bool all_frames;
};
+// Message to ask the browser to translate some text from one language to
+// another.
+struct ViewHostMsg_TranslateTextParam {
+ // The routing id. Even though ViewHostMsg_TranslateText is a control message
+ // (sent to the browser, not to a specific RenderViewHost), the browser needs
+ // the routing id in order to send the response back to the right RenderView.
+ int routing_id;
+
+ // An id used to identify that specific translation.
+ int work_id;
+
+ // The text chunks that need to be translated.
+ std::vector<string16> text_chunks;
+
+ // The ISO code of the language the text to translate is in.
+ std::string from_language;
+
+ // The ISO code of the language the text should be translated to.
+ std::string to_language;
+
+ // Whether a secure connection should be used when transmitting the text for
+ // translation to an external server.
+ bool secure;
+};
+
namespace IPC {
template <>
@@ -2307,6 +2332,45 @@ struct ParamTraits<ViewMsg_ExecuteCode_Params> {
}
};
+template<>
+struct ParamTraits<ViewHostMsg_TranslateTextParam> {
+ typedef ViewHostMsg_TranslateTextParam param_type;
+ static void Write(Message* m, const param_type& p) {
+ WriteParam(m, p.routing_id);
+ WriteParam(m, p.work_id);
+ WriteParam(m, p.text_chunks);
+ WriteParam(m, p.from_language);
+ WriteParam(m, p.to_language);
+ WriteParam(m, p.secure);
+ }
+
+ static bool Read(const Message* m, void** iter, param_type* p) {
+ return
+ ReadParam(m, iter, &p->routing_id) &&
+ ReadParam(m, iter, &p->work_id) &&
+ ReadParam(m, iter, &p->text_chunks) &&
+ ReadParam(m, iter, &p->from_language) &&
+ ReadParam(m, iter, &p->to_language) &&
+ ReadParam(m, iter, &p->secure);
+ }
+ static void Log(const param_type& p, std::wstring* l) {
+ l->append(L"(");
+ LogParam(p.routing_id, l);
+ l->append(L", ");
+ LogParam(p.work_id, l);
+ l->append(L", ");
+ LogParam(p.text_chunks, l);
+ l->append(L", ");
+ LogParam(p.from_language, l);
+ l->append(L", ");
+ LogParam(p.to_language, l);
+ l->append(L", ");
+ LogParam(p.secure, l);
+ l->append(L")");
+ }
+};
+
+
} // namespace IPC
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index d9af024..5bd469d 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -834,6 +834,14 @@ IPC_BEGIN_MESSAGES(View)
// Executes custom context menu action that was provided from WebKit.
IPC_MESSAGE_ROUTED1(ViewMsg_CustomContextMenuAction,
unsigned /* action */)
+
+ // Reply to the ViewHostMsg_TranslateText message with the actual translated
+ // text chunks.
+ IPC_MESSAGE_ROUTED3(ViewMsg_TranslateTextReponse,
+ int /* id of translation work */,
+ int /* error id of translation work */,
+ std::vector<string16> /* the translated text chunks */)
+
IPC_END_MESSAGES(View)
@@ -2007,4 +2015,9 @@ IPC_BEGIN_MESSAGES(ViewHost)
string16 /* word */,
std::vector<string16> /* suggestions */)
+ // Request for text translation.
+ // Used when translating a page from one language to another.
+ IPC_MESSAGE_CONTROL1(ViewHostMsg_TranslateText,
+ ViewHostMsg_TranslateTextParam)
+
IPC_END_MESSAGES(ViewHost)
diff --git a/chrome/renderer/render_view.cc b/chrome/renderer/render_view.cc
index ebc1cd6..885d6eb 100644
--- a/chrome/renderer/render_view.cc
+++ b/chrome/renderer/render_view.cc
@@ -74,11 +74,13 @@
#include "third_party/WebKit/WebKit/chromium/public/WebCString.h"
#include "third_party/WebKit/WebKit/chromium/public/WebDataSource.h"
#include "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgent.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebDocument.h"
#include "third_party/WebKit/WebKit/chromium/public/WebDragData.h"
#include "third_party/WebKit/WebKit/chromium/public/WebFormElement.h"
#include "third_party/WebKit/WebKit/chromium/public/WebFrame.h"
#include "third_party/WebKit/WebKit/chromium/public/WebHistoryItem.h"
#include "third_party/WebKit/WebKit/chromium/public/WebNode.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebNodeList.h"
#include "third_party/WebKit/WebKit/chromium/public/WebPageSerializer.h"
#include "third_party/WebKit/WebKit/chromium/public/WebPoint.h"
#include "third_party/WebKit/WebKit/chromium/public/WebRange.h"
@@ -278,7 +280,9 @@ RenderView::RenderView(RenderThreadBase* render_thread,
has_document_tag_(false),
#endif
document_tag_(0),
- webkit_preferences_(webkit_preferences) {
+ webkit_preferences_(webkit_preferences),
+ ALLOW_THIS_IN_INITIALIZER_LIST(text_translator_(this)) {
+ page_translator_.reset(new PageTranslator(&text_translator_));
}
RenderView::~RenderView() {
@@ -531,6 +535,7 @@ void RenderView::OnMessageReceived(const IPC::Message& message) {
OnExecuteCode)
IPC_MESSAGE_HANDLER(ViewMsg_CustomContextMenuAction,
OnCustomContextMenuAction)
+ IPC_MESSAGE_HANDLER(ViewMsg_TranslateTextReponse, OnTranslateTextResponse)
// Have the super handle all other messages.
IPC_MESSAGE_UNHANDLED(RenderWidget::OnMessageReceived(message))
@@ -3241,6 +3246,15 @@ void RenderView::OnCustomContextMenuAction(unsigned action) {
webview()->performCustomContextMenuAction(action);
}
+void RenderView::OnTranslateTextResponse(
+ int work_id, int error_id, const std::vector<string16>& text_chunks) {
+ if (error_id) {
+ page_translator_->TranslationError(work_id, error_id);
+ return;
+ }
+ page_translator_->TextTranslated(work_id, text_chunks);
+}
+
void RenderView::OnInstallMissingPlugin() {
// This could happen when the first default plugin is deleted.
if (first_default_plugin_)
@@ -3978,3 +3992,4 @@ bool RenderView::SendAndRunNestedMessageLoop(IPC::SyncMessage* message) {
return rv;
}
+
diff --git a/chrome/renderer/render_view.h b/chrome/renderer/render_view.h
index f390af6..7a4ebc4 100644
--- a/chrome/renderer/render_view.h
+++ b/chrome/renderer/render_view.h
@@ -36,6 +36,8 @@
#include "chrome/renderer/notification_provider.h"
#include "chrome/renderer/render_widget.h"
#include "chrome/renderer/render_view_visitor.h"
+#include "chrome/renderer/translate/page_translator.h"
+#include "chrome/renderer/translate/text_translator_impl.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "testing/gtest/include/gtest/gtest_prod.h"
#include "third_party/WebKit/WebKit/chromium/public/WebConsoleMessage.h"
@@ -432,6 +434,8 @@ class RenderView : public RenderWidget,
// UserScript::DOCUMENT_IDLE.
void OnUserScriptIdleTriggered(WebKit::WebFrame* frame);
+ PageTranslator* page_translator() const { return page_translator_.get(); }
+
// Returns the ISO 639_1 language code of the current page
// (ex: en, fr, zh...). Returns 'unknown' if the language could not be
// determined.
@@ -679,6 +683,11 @@ class RenderView : public RenderWidget,
// Execute custom context menu action.
void OnCustomContextMenuAction(unsigned action);
+ // Message that provides the translated text for a request.
+ void OnTranslateTextResponse(int work_id,
+ int error_id,
+ const std::vector<string16>& text_chunks);
+
// Exposes the DOMAutomationController object that allows JS to send
// information to the browser process.
void BindDOMAutomationController(WebKit::WebFrame* webframe);
@@ -998,6 +1007,10 @@ class RenderView : public RenderWidget,
HostZoomLevels host_zoom_levels_;
+ // Page translation related objects.
+ TextTranslatorImpl text_translator_;
+ scoped_ptr<PageTranslator> page_translator_;
+
DISALLOW_COPY_AND_ASSIGN(RenderView);
};
diff --git a/chrome/renderer/translate/page_translator.cc b/chrome/renderer/translate/page_translator.cc
new file mode 100644
index 0000000..1bb245a
--- /dev/null
+++ b/chrome/renderer/translate/page_translator.cc
@@ -0,0 +1,184 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/renderer/translate/page_translator.h"
+
+#include "base/compiler_specific.h"
+#include "base/message_loop.h"
+#include "base/stl_util-inl.h"
+#include "base/string_util.h"
+#include "base/task.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebDocument.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebElement.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebFrame.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebNode.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebNodeList.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebString.h"
+
+// The following elements are not supposed to be translated.
+const char* const kSkippedTags[] = { "APPLET", "AREA", "BASE", "FRAME",
+ "FRAMESET", "HR", "IFRAME", "IMG", "INPUT", "LINK", "META", "MAP",
+ "OBJECT", "PARAM", "SCRIPT", "STYLE", "TEXTAREA" };
+
+// The following tags are not considered as breaking a block of text.
+// Notes: does SPAN belong to this list?
+const char* const kInlineTags[] = { "A", "ABBR", "ACRONYM", "B", "BIG", "DEL",
+ "EM", "I", "INS", "S", "SPAN", "STRIKE", "STRONG", "SUB", "SUP", "U" };
+
+// Returns true when s1 < s2.
+bool PageTranslator::WebStringCompare::operator()(
+ const WebKit::WebString& s1, const WebKit::WebString& s2) const {
+ int len1 = s1.length();
+ int len2 = s2.length();
+ int r = base::strncmp16(s1.data(), s2.data(), std::min(len1, len2));
+
+ if (r < 0)
+ return true;
+ else if (r > 0)
+ return false;
+
+ return len1 < len2;
+}
+
+PageTranslator::PageTranslator(TextTranslator* text_translator)
+ : text_translator_(text_translator) {
+ for (size_t i = 0; i < arraysize(kSkippedTags); ++i)
+ ignored_tags_.insert(WebKit::WebString(ASCIIToUTF16(kSkippedTags[i])));
+ for (size_t i = 0; i < arraysize(kInlineTags); ++i)
+ inline_tags_.insert(WebKit::WebString(ASCIIToUTF16(kInlineTags[i])));
+}
+
+PageTranslator::~PageTranslator() {
+ STLDeleteContainerPairSecondPointers(pending_translations_.begin(),
+ pending_translations_.end());
+}
+
+void PageTranslator::Translate(WebKit::WebFrame* web_frame,
+ std::string from_lang,
+ std::string to_lang) {
+ std::stack<NodeList*> node_list_stack;
+ std::vector<NodeList*> text_node_lists;
+ TraverseNode(web_frame->document(), &node_list_stack, &text_node_lists);
+
+ std::vector<NodeList*>::iterator iter;
+ for (iter = text_node_lists.begin(); iter != text_node_lists.end(); ++iter) {
+ if ((*iter)->empty()) {
+ // Nothing to translate.
+ delete *iter;
+ continue;
+ }
+ std::vector<string16> text_chunks; // The text chunks to translate.
+ std::vector<WebKit::WebNode>::iterator text_nodes_iter;
+ for (text_nodes_iter = (*iter)->begin();
+ text_nodes_iter != (*iter)->end(); ++text_nodes_iter) {
+ DCHECK(text_nodes_iter->isTextNode());
+ string16 text = static_cast<string16>(text_nodes_iter->nodeValue());
+ DCHECK(!ContainsOnlyWhitespace(text));
+ text_chunks.push_back(text);
+ }
+ // Send the text for translation.
+ bool secure = static_cast<GURL>(web_frame->top()->url()).SchemeIsSecure();
+ int work_id =
+ text_translator_->Translate(text_chunks, from_lang, to_lang, secure,
+ this);
+ pending_translations_[work_id] = *iter;
+ }
+}
+
+bool PageTranslator::ShouldElementBeTraversed(WebKit::WebElement element) {
+ return ignored_tags_.find(element.tagName()) == ignored_tags_.end();
+}
+
+bool PageTranslator::IsInlineElement(WebKit::WebElement element) {
+ return inline_tags_.find(element.tagName()) != inline_tags_.end();
+}
+
+void PageTranslator::ClearNodeZone(int work_id) {
+ std::map<int, NodeList*>::iterator iter = pending_translations_.find(work_id);
+ if (iter == pending_translations_.end()) {
+ NOTREACHED() << "Clearing unknown node zone in pending_translations_, "
+ "work id=" << work_id;
+ return;
+ }
+ delete iter->second;
+ pending_translations_.erase(iter);
+}
+
+void PageTranslator::TranslationError(int work_id, int error_id) {
+ // TODO(jcampan): may be we should show somehow that something went wrong to
+ // the user?
+ ClearNodeZone(work_id);
+}
+
+void PageTranslator::TextTranslated(
+ int work_id, const std::vector<string16>& translated_text_chunks) {
+ std::map<int, NodeList*>::iterator iter = pending_translations_.find(work_id);
+ if (iter == pending_translations_.end()) {
+ NOTREACHED() << "Translation results received for unknown node zone";
+ return;
+ }
+
+ NodeList* nodes = iter->second;
+ // Check the integrity of the response.
+ if (translated_text_chunks.size() != nodes->size()) {
+ // TODO(jcampan) reenable when we figured out why the server messed up the
+ // anchor tags.
+ // NOTREACHED() << "Translation results received are inconsistent with the "
+ // "request";
+ return;
+ }
+
+ for (size_t i = 0; i < translated_text_chunks.size(); ++i)
+ (*nodes)[i].setNodeValue(WebKit::WebString(translated_text_chunks[i]));
+
+ ClearNodeZone(work_id);
+}
+
+void PageTranslator::TraverseNode(WebKit::WebNode node,
+ std::stack<NodeList*>* element_stack,
+ std::vector<NodeList*>* text_nodes_list) {
+ if (node.isTextNode()) {
+ if (ContainsOnlyWhitespace(static_cast<string16>(node.nodeValue())))
+ return; // Ignore text nodes with only white-spaces.
+
+ DCHECK(!element_stack->empty());
+ NodeList* text_nodes = element_stack->top();
+ if (text_nodes->empty()) {
+ // This node zone is empty, meaning it has not yet been added to
+ // |text_nodes|.
+ text_nodes_list->push_back(text_nodes);
+ }
+ text_nodes->push_back(node);
+ return;
+ }
+
+ if (!node.hasChildNodes())
+ return;
+
+ bool new_text_block = false;
+ if (node.isElementNode()) {
+ WebKit::WebElement element = node.toElement<WebKit::WebElement>();
+ if (!ShouldElementBeTraversed(element))
+ return;
+
+ if (!IsInlineElement(element)) {
+ new_text_block = true;
+ NodeList* text_nodes = new NodeList();
+ element_stack->push(text_nodes);
+ }
+ }
+
+ WebKit::WebNodeList children = node.childNodes();
+ for (size_t i = 0; i < children.length(); i++)
+ TraverseNode(children.item(i), element_stack, text_nodes_list);
+
+ if (new_text_block) {
+ NodeList* text_nodes = element_stack->top();
+ element_stack->pop();
+ // If no nodes were added to text_nodes, then it has not been added to
+ // text_nodes_list and must be deleted.
+ if (text_nodes->empty())
+ delete text_nodes;
+ }
+}
diff --git a/chrome/renderer/translate/page_translator.h b/chrome/renderer/translate/page_translator.h
new file mode 100644
index 0000000..f7135be
--- /dev/null
+++ b/chrome/renderer/translate/page_translator.h
@@ -0,0 +1,95 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_RENDERER_TRANSLATE_PAGE_TRANSLATOR_H_
+#define CHROME_RENDERER_TRANSLATE_PAGE_TRANSLATOR_H_
+
+#include <map>
+#include <set>
+#include <stack>
+#include <string>
+#include <vector>
+
+#include "base/logging.h"
+#include "base/scoped_ptr.h"
+#include "base/string16.h"
+#include "chrome/renderer/translate/text_translator.h"
+#include "third_party/WebKit/WebKit/chromium/public/WebElement.h"
+
+class RenderView;
+
+namespace WebKit {
+class WebFrame;
+class WebNode;
+class WebString;
+}
+
+// The PageTranslator is a service that translates the text content of a web
+// page from one language to another (ex: English to French).
+// It performs the traversal of the DOM of the page to retrieve the text nodes
+// and delegates the actual text translation to a TextTranslator.
+class PageTranslator : public TextTranslator::Delegate {
+ public:
+ // The caller remains the owner of |text_translator|.
+ explicit PageTranslator(TextTranslator* text_translator);
+ virtual ~PageTranslator();
+
+ // Starts the translation process of |web_frame| from |from_lang| to |to_lang|
+ // where the languages are the ISO codes (ex: en, fr...).
+ void Translate(WebKit::WebFrame* web_frame,
+ std::string from_lang,
+ std::string to_lang);
+
+ // TextTranslator::Delegate implentation:
+ virtual void TranslationError(int work_id, int error_id);
+ virtual void TextTranslated(
+ int work_id, const std::vector<string16>& translated_text);
+
+ private:
+ // Comparator used in set of WebKit WebStrings.
+ struct WebStringCompare {
+ bool operator()(const WebKit::WebString& s1,
+ const WebKit::WebString& s2) const;
+ };
+
+ typedef std::vector<WebKit::WebNode> NodeList;
+
+ // Traverses the tree starting at |node| and fills |nodes| with the
+ // elements necessary for translation.
+ // |element_stack| is used to retrieve the current node list during the tree
+ // traversal.
+ void TraverseNode(WebKit::WebNode node,
+ std::stack<NodeList*>* element_stack,
+ std::vector<NodeList*>* nodes);
+
+ // Whether this |element| should be parsed or ignored for translation purpose.
+ bool ShouldElementBeTraversed(WebKit::WebElement element);
+
+ // Whether this element should be considered as part of the other text nodes
+ // at the same hiearchical level.
+ bool IsInlineElement(WebKit::WebElement element);
+
+ // Removes and deletes the NodeZone for |work_id| in pending_translations_.
+ void ClearNodeZone(int work_id);
+
+ // The RenderView we are providing translations for.
+ RenderView* render_view_;
+
+ // The TextTranslator is responsible for translating the actual text chunks
+ // from one language to another.
+ TextTranslator* text_translator_;
+
+ // The list of tags we are not interested in parsing when translating.
+ std::set<WebKit::WebString, WebStringCompare> ignored_tags_;
+
+ // The list of tags that do not break a block of text.
+ std::set<WebKit::WebString, WebStringCompare> inline_tags_;
+
+ // Mapping from a translation engine work id to the associated nodes.
+ std::map<int, NodeList*> pending_translations_;
+
+ DISALLOW_COPY_AND_ASSIGN(PageTranslator);
+};
+
+#endif // CHROME_RENDERER_TRANSLATE_PAGE_TRANSLATOR_H_
diff --git a/chrome/renderer/translate/page_translator_unittest.cc b/chrome/renderer/translate/page_translator_unittest.cc
new file mode 100644
index 0000000..4bc1e02
--- /dev/null
+++ b/chrome/renderer/translate/page_translator_unittest.cc
@@ -0,0 +1,212 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/file_path.h"
+#include "base/file_util.h"
+#include "base/path_service.h"
+#include "chrome/renderer/translate/page_translator.h"
+#include "chrome/test/render_view_test.h"
+#include "net/base/net_errors.h"
+
+class TranslatorTest : public RenderViewTest {
+ public:
+ TranslatorTest() {}
+};
+
+// A TextTranslator used that simply reverse the strings that are provided to
+// it.
+class ReverseTextTranslator : public TextTranslator {
+ public:
+ ReverseTextTranslator()
+ : ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)),
+ work_id_counter_(0) {
+ }
+
+ virtual int Translate(const std::vector<string16>& text_chunks,
+ std::string from_lang,
+ std::string to_lang,
+ bool secure,
+ TextTranslator::Delegate* delegate) {
+ int work_id = work_id_counter_++;
+
+ std::vector<string16> translated_text_chunks;
+ for (std::vector<string16>::const_iterator iter = text_chunks.begin();
+ iter != text_chunks.end(); ++iter) {
+ translated_text_chunks.push_back(ReverseString(*iter));
+ }
+ MessageLoop::current()->PostTask(FROM_HERE,
+ method_factory_.NewRunnableMethod(
+ &ReverseTextTranslator::NotifyDelegate,
+ work_id,
+ translated_text_chunks,
+ delegate));
+ return work_id;
+ }
+
+ private:
+ void NotifyDelegate(int work_id,
+ const std::vector<string16>& text_chunks,
+ TextTranslator::Delegate* delegate) {
+ delegate->TextTranslated(work_id, text_chunks);
+ }
+
+ string16 ReverseString(const string16& str) {
+ string16 result;
+ for (string16::const_reverse_iterator iter = str.rbegin();
+ iter != str.rend(); ++iter) {
+ result.push_back(*iter);
+ }
+ return result;
+ }
+
+ ScopedRunnableMethodFactory<ReverseTextTranslator> method_factory_;
+
+ int work_id_counter_;
+
+ DISALLOW_COPY_AND_ASSIGN(ReverseTextTranslator);
+};
+
+// A simple ResourceLoaderBridge that always fails to load.
+class DummyResourceLoaderBridge : public webkit_glue::ResourceLoaderBridge {
+ public:
+ DummyResourceLoaderBridge() { }
+
+ virtual void AppendDataToUpload(const char* data, int data_len) {}
+ virtual void AppendFileRangeToUpload(const FilePath& file_path,
+ uint64 offset, uint64 length) {}
+ virtual void SetUploadIdentifier(int64 identifier) {}
+ virtual bool Start(Peer* peer) { return false; }
+ virtual void Cancel() {}
+ virtual void SetDefersLoading(bool value) {}
+ virtual void SyncLoad(SyncLoadResponse* response) {
+ response->status.set_status(URLRequestStatus::FAILED);
+ response->status.set_os_error(net::ERR_FAILED);
+ }
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(DummyResourceLoaderBridge);
+};
+
+// A ChildThread class that creates a dummy resource loader bridge so that
+// page with resources can be loaded (as data:...) without asserting.
+class TestChildThread : public ChildThread {
+ public:
+ TestChildThread() {}
+
+ virtual webkit_glue::ResourceLoaderBridge* CreateBridge(
+ const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info,
+ int host_renderer_id,
+ int host_render_view_id) {
+ return new DummyResourceLoaderBridge;
+ }
+
+ // Overriden so it does not terminate the message loop. That would assert as
+ // the message loop is running in the test.
+ virtual void OnProcessFinalRelease() { }
+};
+
+// Tests that we parse and change text in pages correctly.
+// It loads all the <name>_ORIGINAL.html files under the
+// chrome/test/data/translate directory. There must be a matching
+// <name>_TRANLSATED.html in the directory.
+// The _ORIGINAL page is loaded and translated.
+// The result is compared to the _TRANSLATED page.
+// Note: _TRANSLATED.html files can be generated using the reverse_text.py
+// script located in the chrome/test/data/translate directory.
+// TODO(jcampan): http://crbug.com/32217 This test is disabled as it sometimes
+// fails on Windows and always fails on Unix. We need to improve
+// RenderViewTest so it supports loading tags that contain links
+// and sub-resources.
+TEST_F(TranslatorTest, DISABLED_TranslatePages) {
+ // Create the RenderThread singleton. Rendering pages requires a
+ // VisitedLinkSlave that this object creates.
+ RenderThread render_thread;
+
+ // Create the ChildThread singleton. It is used to create the resource
+ // bridges. (It is owned by the ChildProcess.)
+ ChildProcess::current()->set_main_thread(new TestChildThread());
+
+ FilePath data_dir;
+ ASSERT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &data_dir));
+ data_dir = data_dir.Append(FILE_PATH_LITERAL("chrome"));
+ data_dir = data_dir.Append(FILE_PATH_LITERAL("test"));
+ data_dir = data_dir.Append(FILE_PATH_LITERAL("data"));
+ data_dir = data_dir.Append(FILE_PATH_LITERAL("translate"));
+
+ file_util::FileEnumerator file_enumerator(
+ data_dir, false, file_util::FileEnumerator::FILES,
+ FILE_PATH_LITERAL("*_ORIGINAL.html"));
+
+ FilePath original_file_path = file_enumerator.Next();
+ while (!original_file_path.empty()) {
+ // Locate the _TRANSLATED.html file.
+ FilePath::StringType original_base = original_file_path.BaseName().value();
+ LOG(INFO) << "Processing file " << original_base;
+ size_t orig_index =
+ original_base.rfind(FILE_PATH_LITERAL("_ORIGINAL.html"));
+ ASSERT_NE(FilePath::StringType::npos, orig_index);
+ FilePath::StringType translated_base = original_base.substr(0, orig_index) +
+ FILE_PATH_LITERAL("_TRANSLATED.html");
+
+ FilePath translated_file_path(original_file_path.DirName());
+ translated_file_path = translated_file_path.Append(translated_base);
+
+ ASSERT_TRUE(file_util::PathExists(translated_file_path));
+
+ // Load the original file.
+ int64 size;
+ ASSERT_TRUE(file_util::GetFileSize(original_file_path, &size));
+ scoped_array<char> buffer(new char[static_cast<size_t>(size) + 1]);
+ ASSERT_EQ(size, file_util::ReadFile(original_file_path, buffer.get(),
+ static_cast<int>(size)));
+ buffer[static_cast<size_t>(size)] = '\0';
+ LoadHTML(buffer.get());
+
+ WebKit::WebFrame* web_frame = GetMainFrame();
+ ASSERT_TRUE(web_frame);
+
+ // Translate it.
+ ReverseTextTranslator text_translator;
+ PageTranslator translator(&text_translator);
+ translator.Translate(web_frame, "en", "fr");
+
+ // Translation is asynchronous, so we need to process the pending messages
+ // to make it happen.
+ MessageLoop::current()->RunAllPending();
+
+ WebKit::WebString actual_translated_contents = web_frame->contentAsMarkup();
+
+ // Load the translated page.
+ ASSERT_TRUE(file_util::GetFileSize(translated_file_path, &size));
+ buffer.reset(new char[static_cast<size_t>(size) + 1]);
+ ASSERT_EQ(size, file_util::ReadFile(translated_file_path, buffer.get(),
+ static_cast<int>(size)));
+ buffer[static_cast<size_t>(size)] = '\0';
+ LoadHTML(buffer.get());
+
+ web_frame = GetMainFrame();
+ ASSERT_TRUE(web_frame);
+ WebKit::WebString expected_translated_contents =
+ web_frame->contentAsMarkup();
+
+ EXPECT_EQ(expected_translated_contents.length(),
+ actual_translated_contents.length());
+
+ // We compare the actual and expected results by chunks of 80 chars to make
+ // debugging easier.
+ int max = std::min(expected_translated_contents.length(),
+ actual_translated_contents.length());
+ int index = 0;
+ while (index < max) {
+ int len = std::min(80, max - index);
+ string16 expected(expected_translated_contents.data() + index, len);
+ string16 actual(actual_translated_contents.data() + index, len);
+ ASSERT_EQ(expected, actual);
+ index += 80;
+ }
+
+ // Iterate to the next file to test.
+ original_file_path = file_enumerator.Next();
+ }
+}
diff --git a/chrome/renderer/translate/text_translator.h b/chrome/renderer/translate/text_translator.h
new file mode 100644
index 0000000..b4e7581
--- /dev/null
+++ b/chrome/renderer/translate/text_translator.h
@@ -0,0 +1,49 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_RENDERER_TRANSLATE_TEXT_TRANSLATOR_H_
+#define CHROME_RENDERER_TRANSLATE_TEXT_TRANSLATOR_H_
+
+#include <string>
+#include <vector>
+
+#include "base/string16.h"
+
+// TextTranslator is an interface that is implemented by providers that know
+// how to translate text from one language to another.
+// It is asynchronous. Clients call Translate() with the text to translate and
+// receive a work id. The implementation should call the TextTranslated
+// method on the delegate once the text has been translated.
+
+class TextTranslator {
+ public:
+ class Delegate {
+ public:
+ virtual ~Delegate() {}
+
+ // Notifies that the translation failed for |work_id|.
+ virtual void TranslationError(int work_id, int error_id) = 0;
+
+ // Notifies that the translation for |work_id| succeeded.
+ virtual void TextTranslated(
+ int work_id, const std::vector<string16>& translated_text) = 0;
+ };
+
+ TextTranslator() {}
+ virtual ~TextTranslator() {}
+
+ // Initiates the translation of the |text| provided, from the language
+ // |from_lang| to |to_lang| (these are the ISO language code, for example en,
+ // fr, ja...). If |secure| is true then a secure communication method (HTTPS)
+ // should be used if using a remote resource to perform the translation.
+ // Returns a work id that is passed as a parameter when delegate methods are
+ // called on |delegate| to notify the translation succeeded/failed.
+ virtual int Translate(const std::vector<string16>& text,
+ std::string from_lang,
+ std::string to_lang,
+ bool secure,
+ TextTranslator::Delegate* delegate) = 0;
+};
+
+#endif // CHROME_RENDERER_TRANSLATE_TEXT_TRANSLATOR_H_
diff --git a/chrome/renderer/translate/text_translator_impl.cc b/chrome/renderer/translate/text_translator_impl.cc
new file mode 100644
index 0000000..40e2c16
--- /dev/null
+++ b/chrome/renderer/translate/text_translator_impl.cc
@@ -0,0 +1,40 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/renderer/translate/text_translator_impl.h"
+
+#include "chrome/common/render_messages.h"
+#include "chrome/renderer/render_view.h"
+
+TextTranslatorImpl::TextTranslatorImpl(RenderView* render_view)
+ : render_view_(render_view),
+ work_id_counter_(0) {
+}
+
+void TextTranslatorImpl::OnTranslationResponse(
+ int work_id, int error_id, const std::vector<string16>& text_chunks) {
+ if (error_id) {
+ render_view_->page_translator()->TranslationError(work_id, error_id);
+ return;
+ }
+ render_view_->page_translator()->TextTranslated(work_id, text_chunks);
+}
+
+int TextTranslatorImpl::Translate(const std::vector<string16>& text,
+ std::string from_lang,
+ std::string to_lang,
+ bool secure,
+ TextTranslator::Delegate* delegate) {
+ ViewHostMsg_TranslateTextParam param;
+ param.routing_id = render_view_->routing_id();
+ param.work_id = work_id_counter_++;
+ param.from_language = from_lang;
+ param.to_language = to_lang;
+ param.text_chunks = text;
+ param.secure = secure;
+
+ render_view_->Send(new ViewHostMsg_TranslateText(param));
+
+ return param.work_id;
+}
diff --git a/chrome/renderer/translate/text_translator_impl.h b/chrome/renderer/translate/text_translator_impl.h
new file mode 100644
index 0000000..566a084
--- /dev/null
+++ b/chrome/renderer/translate/text_translator_impl.h
@@ -0,0 +1,51 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_RENDERER_TRANSLATE_TEXT_TRANSLATOR_IMPL_H_
+#define CHROME_RENDERER_TRANSLATE_TEXT_TRANSLATOR_IMPL_H_
+
+#include <string>
+#include <vector>
+
+#include "base/logging.h"
+#include "chrome/renderer/translate/text_translator.h"
+
+class RenderView;
+
+// An implementation of the TextTranslator that sends translation requests
+// to the browser.
+// There is one instance of TextTranslatorImpl per RenderViewHost and the
+// RenderViewHost owns that instance.
+//
+// TODO(jcampan): limit the number of translation requests in flight so not to
+// swamp the browser's resource dispatcher host.
+
+class TextTranslatorImpl : public TextTranslator {
+ public:
+ explicit TextTranslatorImpl(RenderView* render_view);
+
+ // Called by the renderer to notify a translation response has been received.
+ // |error_id| is different than 0 if an error occurred.
+ void OnTranslationResponse(int work_id,
+ int error_id,
+ const std::vector<string16>& text_chunks);
+
+ // TextTranslator implementation.
+ virtual int Translate(const std::vector<string16>& text,
+ std::string from_lang,
+ std::string to_lang,
+ bool secure,
+ TextTranslator::Delegate* delegate);
+ private:
+ // The render view through which translation requests/responses are
+ // sent/received.
+ RenderView* render_view_;
+
+ // The counter used to create work ids.
+ int work_id_counter_;
+
+ DISALLOW_COPY_AND_ASSIGN(TextTranslatorImpl);
+};
+
+#endif // CHROME_RENDERER_TRANSLATE_TEXT_TRANSLATOR_IMPL_H_
diff --git a/chrome/test/data/translate/basic_ORIGINAL.html b/chrome/test/data/translate/basic_ORIGINAL.html
new file mode 100644
index 0000000..420ca73
--- /dev/null
+++ b/chrome/test/data/translate/basic_ORIGINAL.html
@@ -0,0 +1,32 @@
+<html>
+
+<script>
+function buttonClicked() {
+ div = document.getElementById("lastDiv");
+ bold = document.getElementById("bold");
+
+ text_node = document.createTextNode("Hello!");
+ // div.childNodes[0].appendChild(text_node);
+ p_node = document.createElement("p");
+ p_node.appendChild(text_node);
+ bold.appendChild(p_node);
+}
+</script>
+
+<body>
+
+ <p>A simple paragraph. Nothing to see here, move along!</p>
+
+ <p>This is a paragraph with a <a href="">link</a> and some <b id="bold">bold text</b> in it!</p>
+ <p>This on uses a <SPAN>span</SPAN> &nbsp;</p>
+
+
+ <dIV>
+ <div>This is a first div <div>with an inner div</div> and that's it</div>
+ <div id="lastDiv">OK, last div 0.69%</div>
+ </div>
+
+ <button onclick="buttonClicked()">Click me&nbsp;</button>
+</body>
+
+</html>
diff --git a/chrome/test/data/translate/basic_TRANSLATED.html b/chrome/test/data/translate/basic_TRANSLATED.html
new file mode 100644
index 0000000..b95f28b
--- /dev/null
+++ b/chrome/test/data/translate/basic_TRANSLATED.html
@@ -0,0 +1,33 @@
+<html>
+
+<script>
+function buttonClicked() {
+ div = document.getElementById("lastDiv");
+ bold = document.getElementById("bold");
+
+ text_node = document.createTextNode("Hello!");
+ // div.childNodes[0].appendChild(text_node);
+ p_node = document.createElement("p");
+ p_node.appendChild(text_node);
+ bold.appendChild(p_node);
+}
+</script>
+
+<body>
+
+ <p>!gnola evom ,ereh ees ot gnihtoN .hpargarap elpmis A</p>
+
+ <p> a htiw hpargarap a si sihT<a href="">knil</a> emos dna <b id="bold">txet dlob</b>!ti ni </p>
+ <p> a sesu no sihT<SPAN>naps</SPAN> &nbsp;</p>
+
+
+ <dIV>
+ <div> vid tsrif a si sihT<div>vid renni na htiw</div>ti s'taht dna </div>
+ <div id="lastDiv">&#37;96.0 vid tsal ,KO</div>
+ </div>
+
+ <button onclick="buttonClicked()">&nbsp;em kcilC</button>
+</body>
+
+</html>
+
diff --git a/chrome/test/data/translate/chrome_wikipedia_ORIGINAL.html b/chrome/test/data/translate/chrome_wikipedia_ORIGINAL.html
new file mode 100644
index 0000000..b66a7be
--- /dev/null
+++ b/chrome/test/data/translate/chrome_wikipedia_ORIGINAL.html
@@ -0,0 +1,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 20–30 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> \ No newline at end of file
diff --git a/chrome/test/data/translate/chrome_wikipedia_TRANSLATED.html b/chrome/test/data/translate/chrome_wikipedia_TRANSLATED.html
new file mode 100644
index 0000000..c399b79
--- /dev/null
+++ b/chrome/test/data/translate/chrome_wikipedia_TRANSLATED.html
@@ -0,0 +1,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>aidepolcycne eerf eht ,aidepikiW - emorhC elgooG</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>”?uoy erA .ni ma I“</SPAN>
+ </TD>
+ <TD class="notice-pitch-donor" align="left">
+ <TABLE cellpadding="0" cellspacing="0" border="0">
+ <TBODY><TR>
+ <TD class="notice-pitch-donor-info">:ronoD</TD>
+ <TD class="notice-pitch-donor-info">gnahC reteP</TD>
+ </TR>
+ <TR>
+ <TD class="notice-pitch-donor-info">:etaD</TD>
+ <TD class="notice-pitch-donor-info">9002 ,01 rebmeceD</TD>
+ </TR>
+ <TR>
+ <TD class="notice-pitch-donor-info">:tnuomA</TD>
+ <TD class="notice-pitch-donor-info">00.53 DSU</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">woN etanoD</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>ediH</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>wohS</SPAN></A>]</DIV>
+ <A class="notice-slogan" href="javascript:goToDonationPage('collapsed')">
+ <SPAN>aidepikiW</SPAN>
+ <IMG src="./chrome_wikipedia_ORIGINAL_files/Wikipedia-logo-small_(Fundraising_2009).png" alt="">
+ <SPAN>reveroF</SPAN>
+ </A>
+ <SPAN>.erusaert derahs ruO .egdelwonk derahs ruO</SPAN>
+ <A href="javascript:goToDonationPage('collapsed')">
+ <SPAN>.ti tcetorp su pleH</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>wohS</SPAN></A>]</DIV>
+ <A class="notice-slogan" href="javascript:goToDonationPage('collapsed')">
+ <SPAN>aidepikiW</SPAN>
+ <IMG src="./chrome_wikipedia_ORIGINAL_files/Wikipedia-logo-small_(Fundraising_2009).png" alt="">
+ <SPAN>reveroF</SPAN>
+ </A>
+ <SPAN>.erusaert derahs ruO .egdelwonk derahs ruO</SPAN>
+ <A href="javascript:goToDonationPage('collapsed')">
+ <SPAN>.ti tcetorp su pleH</SPAN>
+ </A>
+ <DIV style="clear:both"></DIV>
+</DIV>
+<DIV style="clear:both"></DIV></DIV>
+</DIV> <H1 id="firstHeading" class="firstHeading">emorhC elgooG</H1>
+ <DIV id="bodyContent">
+ <H3 id="siteSub">aidepolcycne eerf eht ,aidepikiW morF</H3>
+ <DIV id="contentSub"></DIV>
+ <DIV id="jump-to-nav"> :ot pmuJ<A href="http://en.wikipedia.org/wiki/Google_Chrome#column-one">noitagivan</A> ,<A href="http://en.wikipedia.org/wiki/Google_Chrome#searchInput">hcraes</A></DIV> <!-- start content -->
+ <DIV class="dablink"> ees ,metsys gnitarepo eht roF .resworb bew eht tuoba si elcitra sihT<A href="http://en.wikipedia.org/wiki/Google_Chrome_OS" title="Google Chrome OS">SO emorhC elgooG</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;">emorhC elgooG</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=""> gniyalpsid 0.3 emorhC elgooG<A href="http://en.wikipedia.org/wiki/Wikipedia" title="Wikipedia">aidepikiW</A> no <A href="http://en.wikipedia.org/wiki/Windows_7" title="Windows 7">7 swodniW</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">)s(repoleveD</A></TH>
+<TD class="" style=""><A href="http://en.wikipedia.org/wiki/Google" title="Google">elgooG</A>.cnI </TD>
+</TR>
+<TR class="">
+<TH style="text-align:left; white-space: nowrap">esaeler laitinI</TH>
+<TD class="" style="">8002 ,2 rebmetpeS<SPAN style="display:none">(&nbsp;<SPAN class="bday dtstart updated">20-90-8002</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">esaeler elbatS</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">)emarf emorhc( 1.542.0.4 ,)resworb( 83.591.0.3</A></SPAN> &nbsp;<SMALL>(<SPAN class="bday">41-21-9002</SPAN><SPAN class="noprint">oga sruoh 62 ;</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">esaeler weiverP</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">)lennahc veD xuniL &amp; swodniW( 0.662.0.4 ,)ateB xuniL &amp; ,caM ,swodniW( 03.942.0.4</A></SPAN> &nbsp;<SMALL>(<SPAN class="bday">11-21-9002</SPAN><SPAN class="noprint">oga syad 4 ;</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">ni nettirW</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">ylbmessA</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">metsys gnitarepO</A></TH>
+<TD class="" style=""><A href="http://en.wikipedia.org/wiki/Windows" title="Windows" class="mw-redirect">swodniW</A>( <A href="http://en.wikipedia.org/wiki/Windows_XP_SP2" title="Windows XP SP2" class="mw-redirect">2PS PX</A>)retal dna <BR>
+<A href="http://en.wikipedia.org/wiki/Mac_OS_X" title="Mac OS X">X SO caM</A>)retal dna 5.01( <BR>
+<A href="http://en.wikipedia.org/wiki/Linux" title="Linux">xuniL</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">enignE</A></TH>
+<TD class="" style=""><A href="http://en.wikipedia.org/wiki/WebKit" title="WebKit">tiKbeW</A> no desaB( <A href="http://en.wikipedia.org/wiki/KHTML" title="KHTML">LMTHK</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">eziS</A></TH>
+<TD class="" style=""> 5.01<A href="http://en.wikipedia.org/wiki/Megabytes" title="Megabytes" class="mw-redirect">BM</A>)swodniW( </TD>
+</TR>
+<TR class="">
+<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Language" title="Language">ni elbaliavA</A></TH>
+<TD class="" style="">segaugnal 05</TD>
+</TR>
+<TR class="">
+<TH style="text-align:left; white-space: nowrap">sutats tnempoleveD</TH>
+<TD class="" style="">evitcA</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">epyT</A></TH>
+<TD class="" style=""><A href="http://en.wikipedia.org/wiki/Web_browser" title="Web browser">resworb beW</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">esneciL</A></TH>
+<TD class="" style=""><A href="http://www.google.com/chrome/intl/en/eula_text.html" class="external text" rel="nofollow">ecivreS fo smreT emorhC elgooG</A>,)elbatucexe emorhC elgooG( <BR>
+<A href="http://en.wikipedia.org/wiki/BSD_license" title="BSD license" class="mw-redirect">DSB</A>)elbatucexe muimorhC dna edoc ecruos( </TD>
+</TR>
+<TR class="">
+<TH style="text-align:left; white-space: nowrap"><A href="http://en.wikipedia.org/wiki/Website" title="Website">etisbeW</A></TH>
+<TD class="" style=""><A href="http://www.google.com/chrome/" class="external text" rel="nofollow">emorhc/moc.elgoog.www</A> <A href="http://code.google.com/chromium/" class="external text" rel="nofollow">/muimorhc/moc.elgoog.edoc</A> <A href="http://dev.chromium.org/" class="external text" rel="nofollow">/gro.muimorhc.ved</A></TD>
+</TR>
+</TBODY></TABLE>
+<P><B>emorhC elgooG</B> a si <A href="http://en.wikipedia.org/wiki/Web_browser" title="Web browser">resworb bew</A> yb desaeler <A href="http://en.wikipedia.org/wiki/Google" title="Google">elgooG</A> eht sesu hcihw <A href="http://en.wikipedia.org/wiki/WebKit" title="WebKit">tiKbeW</A> <A href="http://en.wikipedia.org/wiki/Layout_engine" title="Layout engine">enigne tuoyal</A> dna <A href="http://en.wikipedia.org/wiki/Application_framework" title="Application framework">krowemarf noitacilppa</A> a sa desaeler tsrif saw tI .<A href="http://en.wikipedia.org/wiki/Beta_version" title="Beta version" class="mw-redirect">noisrev ateb</A> rof <A href="http://en.wikipedia.org/wiki/Microsoft_Windows" title="Microsoft Windows">swodniW tfosorciM</A> eht morf devired si eman ehT .8002 rebmeceD 11 no saw esaeler elbats cilbup eht dna ,8002 rebmetpeS 2 no <A href="http://en.wikipedia.org/wiki/Graphical_user_interface" title="Graphical user interface">ecafretni resu lacihparg</A>9002 rebmeceD 1 fo sA .sresworb bew fo ,"emorhc" ro ,emarf <SPAN style="display:none">(&nbsp;<SPAN class="bday dtstart updated">10-21- 9002</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">]etadpu[</A></SUP> ediwdlrow fo &#37;9.3 htiw ,resworb desu ylediw tsom htruof eht saw emorhC ,<A href="http://en.wikipedia.org/wiki/Usage_share_of_web_browsers" title="Usage share of web browsers">sresworb bew fo erahs egasu</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> rof emorhC fo snoisrev ateB <A href="http://en.wikipedia.org/wiki/Linux" title="Linux">xuniL</A> ,<A href="http://en.wikipedia.org/wiki/Mac_OS_X" title="Mac OS X">X SO caM</A>9002 rebmeceD 8 no desaeler erew snoisnetxe emorhC dna <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> sti gnidulcni ,emorhC fo edoc ecruos eritne eht desaeler elgooG ,8002 rebmetpeS nI<A href="http://en.wikipedia.org/wiki/V8_(JavaScript_engine)" title="V8 (JavaScript engine)">enigne tpircSavaJ 8V</A> na sa ,<A href="http://en.wikipedia.org/wiki/Open_source" title="Open source">ecruos nepo</A> deltitne tcejorp <A href="http://en.wikipedia.org/wiki/Chromium_(web_browser)" title="Chromium (web browser)">muimorhC</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>.snoitacilppa bew pleh ot 8V tpoda dluow sresworb rehto taht epoh desserpxe osla nosrepsekops elgooG A .xuniL dna X SO caM ot resworb eht trop pleh dna edoc ecruos gniylrednu eht yduts ot srepoleved ytrap-driht delbane evom sihT <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> evissimrep eht rednu desaeler si muimorhC fo noitrop derohtua-elgooG ehT <A href="http://en.wikipedia.org/wiki/BSD_license" title="BSD license" class="mw-redirect">esnecil DSB</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>.smargorp erawtfos yrateirporp dna ecruos nepo htob otni detaroprocni eb ot snoitrop swolla hcihw <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>.sesnecil ecruos-nepo fo yteirav a ot tcejbus era edoc ecruos eht fo snoitrop rehtO <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>.ogol tnereffid ylthgils a sah ti dna ,setadpu citamotua dna gnidnarb elgooG tuohtiw tub ,emorhC sa tes erutaef emas eht stnemelpmi muimorhC <SUP id="cite_ref-9" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-9"><SPAN>[</SPAN>01<SPAN>]</SPAN></A></SUP></P>
+<TABLE id="toc" class="toc">
+<TBODY><TR>
+<TD>
+<DIV id="toctitle">
+<H2>stnetnoC</H2>
+ <SPAN class="toctoggle">[<A id="togglelink" class="internal" href="javascript:toggleToc()">edih</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">yrotsiH</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">tnemecnuonnA</SPAN></A></LI>
+<LI class="toclevel-2 tocsection-3"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Public_release"><SPAN class="tocnumber">2.1</SPAN> <SPAN class="toctext">esaeler cilbuP</SPAN></A></LI>
+<LI class="toclevel-2 tocsection-4"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Development"><SPAN class="tocnumber">3.1</SPAN> <SPAN class="toctext">tnempoleveD</SPAN></A></LI>
+<LI class="toclevel-2 tocsection-5"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Release_history"><SPAN class="tocnumber">4.1</SPAN> <SPAN class="toctext">yrotsih esaeleR</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">serutaeF</SPAN></A>
+<UL>
+<LI class="toclevel-2 tocsection-7"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Security"><SPAN class="tocnumber">1.2</SPAN> <SPAN class="toctext">ytiruceS</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">deepS</SPAN></A></LI>
+<LI class="toclevel-2 tocsection-9"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Stability"><SPAN class="tocnumber">3.2</SPAN> <SPAN class="toctext">ytilibatS</SPAN></A></LI>
+<LI class="toclevel-2 tocsection-10"><A href="http://en.wikipedia.org/wiki/Google_Chrome#User_interface"><SPAN class="tocnumber">4.2</SPAN> <SPAN class="toctext">ecafretni resU</SPAN></A></LI>
+<LI class="toclevel-2 tocsection-11"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Extensions"><SPAN class="tocnumber">5.2</SPAN> <SPAN class="toctext">snoisnetxE</SPAN></A></LI>
+<LI class="toclevel-2 tocsection-12"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Themes"><SPAN class="tocnumber">6.2</SPAN> <SPAN class="toctext">semehT</SPAN></A></LI>
+<LI class="toclevel-2 tocsection-13"><A href="http://en.wikipedia.org/wiki/Google_Chrome#Usage_tracking"><SPAN class="tocnumber">7.2</SPAN> <SPAN class="toctext">gnikcart egasU</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">8.2</SPAN> <SPAN class="toctext">setadpu dna slennahc esaeleR</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">noitpeceR</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">1.3</SPAN> <SPAN class="toctext">swodniW htiw seussi gnireenigne-esreveR</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">osla eeS</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">secnerefeR</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">sknil lanretxE</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">tide</A>]</SPAN> <SPAN class="mw-headline" id="History">yrotsiH</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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Announcement">tnemecnuonnA</SPAN></H3>
+<P> yb cimoc a dna ,8002 rebmetpeS 3 rof deludehcs yllanigiro saw tnemecnuonna esaeler ehT<A href="http://en.wikipedia.org/wiki/Scott_McCloud" title="Scott McCloud">duolCcM ttocS</A>.resworb wen eht rof snoitavitom dna fo serutaef eht gninialpxe sreggolb dna stsilanruoj ot tnes eb ot saw <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> rof dednetni seipoC <A href="http://en.wikipedia.org/wiki/Europe" title="Europe">eporuE</A> dna ylrae deppihs erew <A href="http://en.wikipedia.org/wiki/Germany" title="Germany">namreG</A> fo nessneL ppilihP reggolb <A href="http://en.wikipedia.org/wiki/Google_Blogoscoped" title="Google Blogoscoped">depocsogolB elgooG</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>21<SPAN>]</SPAN></A></SUP>.8002 rebmetpeS 1 no ti gniviecer retfa etisbew sih no elbaliava cimoc egap-83 eht fo ypoc dennacs a edam <SUP id="cite_ref-comic_12-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-comic-12"><SPAN>[</SPAN>31<SPAN>]</SPAN></A></SUP> no elbaliava cimoc eht edam yltneuqesbus elgooG <A href="http://en.wikipedia.org/wiki/Google_Books" title="Google Books" class="mw-redirect">skooB elgooG</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>41<SPAN>]</SPAN></A></SUP>.esaeler ylrae eht rof noitanalpxe na htiw gnola golb laiciffo rieht no ti denoitnem dna <SUP id="cite_ref-releasedate_14-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-releasedate-14"><SPAN>[</SPAN>51<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Public_release">esaeler cilbuP</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>egap emoh tluafed eht gniwohs ,xuniL rof muimorhC fo noisrev ahpla nA
+</DIV>
+</DIV>
+</DIV>
+<P>.noisrev ateb a yllaiciffo ,segaugnal 34 ni 8002 rebmetpeS 2 no )ylno retal dna PX( swodniW tfosorciM rof desaeler ylcilbup tsrif saw resworb ehT<SUP id="cite_ref-15" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-15"><SPAN>[</SPAN>61<SPAN>]</SPAN></A></SUP>.tnempoleved rednu gnieb llits snoisrev xuniL dna X SO caM etipsed erahs tekram &#37;1 tuoba deniag ylkciuq emorhC <SUP id="cite_ref-releasedate_14-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-releasedate-14"><SPAN>[</SPAN>51<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>71<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>81<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>91<SPAN>]</SPAN></A></SUP>.dlohserht &#37;1 eht dessap niaga emorhC ,8002 rebmeceD yb litnu niaga gnisir detrats neht tI .8002 rebotcO ni &#37;96.0 fo wol a tih ti litnu deppord erahs egasu ,egrus laitini eht retfA <SUP id="cite_ref-19" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-19"><SPAN>[</SPAN>02<SPAN>]</SPAN></A></SUP></P>
+<P>.ikiw repoleved s'tcejorp muimorhC eht ni decalp saw xuniL no dliub ot elbaliava si "llehs tset" a taht gniyas egassem a ,8002 etal nI<SUP id="cite_ref-20" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-20"><SPAN>[</SPAN>12<SPAN>]</SPAN></A></SUP>.)tpircSavaJ gnidulcni( setis bew gniredner ni llew etiuq noitcnuf ot deraeppa tub ,serutaef ynam dekcal yltnerappa hcihw ,llehs siht deirt emoS <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>32<SPAN>]</SPAN></A></SUP> ,9002 yraunaJ ylrae nI <A href="http://en.wikipedia.org/wiki/CNET" title="CNET" class="mw-redirect">TENC</A>.raey eht fo flah tsrif eht ni xuniL dna X SO caM rof snoisrev esaeler ot dennalp elgooG taht detroper <SUP id="cite_ref-ChromeMacDeadline_23-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-ChromeMacDeadline-23"><SPAN>[</SPAN>42<SPAN>]</SPAN></A></SUP>.etelpmoc morf raf yrev llits saw tub ,esaeler swodniW eht ot ralimis dekool hcihw ,resworb muimorhC eht fo noisrev ahpla-erp a dliub ot elbissop saw ti ,9002 hcraM yB <SUP id="cite_ref-24" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-24"><SPAN>[</SPAN>52<SPAN>]</SPAN></A></SUP></P>
+<P>sweiverp repoleved xuniL dna X SO caM emorhC laiciffo tsrif ehT<SUP id="cite_ref-25" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-25"><SPAN>[</SPAN>62<SPAN>]</SPAN></A></SUP>tsop golb a htiw 9002 enuJ 4 no decnuonna erew <SUP id="cite_ref-26" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-26"><SPAN>[</SPAN>72<SPAN>]</SPAN></A></SUP>".shtnom fo elpuoc a ni" desaeler eb dluow caM rof emorhC taht detats tdimhcS cirE OEC elgooG ,9002 rebotcO 9 nO .esu lareneg naht rehtar kcabdeef ylrae rof dednetni erew dna serutaef ynam gnissim erew yeht gniyas <SUP id="cite_ref-27" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-27"><SPAN>[</SPAN>82<SPAN>]</SPAN></A></SUP>.snoisnetxe dna ,cnyS kramkooB ,troppus tib-46 ,reganam kramkoob a ,edoM ppA sa serutaef hcus gnikcal ,9002 fo dne eht yb elbaliava eb dluow ateb X SO caM eht taht detroper saw ti ,9002 rebmevoN 03 nO <SUP id="cite_ref-28" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-28"><SPAN>[</SPAN>92<SPAN>]</SPAN></A></SUP>.9002 rebmeceD 8 no desaeler erew xuniL dna X SO caM rof sateb laiciffO <SUP id="cite_ref-29" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-29"><SPAN>[</SPAN>03<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Development">tnempoleveD</SPAN></H3>
+<P> sa hcus seitrap driht dna elgooG morf seirarbil edoc tnereffid 52 morf delbmessa saw emorhC<A href="http://en.wikipedia.org/wiki/Netscape_(web_browser)" title="Netscape (web browser)">epacsteN</A>.<SUP id="cite_ref-30" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-30"><SPAN>[</SPAN>13<SPAN>]</SPAN></A></SUP> ehT <A href="http://en.wikipedia.org/wiki/JavaScript" title="JavaScript">tpircSavaJ</A> <A href="http://en.wikipedia.org/wiki/Virtual_machine" title="Virtual machine">enihcam lautriv</A> saw sa( ffo tilps eb ot tcejorp tnatropmi yltneiciffus a deredisnoc saw <A href="http://en.wikipedia.org/wiki/Adobe_Systems" title="Adobe Systems">ebodA</A>/<A href="http://en.wikipedia.org/wiki/Mozilla" title="Mozilla">allizoM</A> s'<A href="http://en.wikipedia.org/wiki/Tamarin_(JavaScript_engine)" title="Tamarin (JavaScript engine)">niramaT</A> ni maet etarapes a yb deldnah dna )<A href="http://en.wikipedia.org/wiki/Denmark" title="Denmark">kramneD</A> yb detanidrooc <A href="http://en.wikipedia.org/wiki/Lars_Bak_(computer_programmer)" title="Lars Bak (computer programmer)">kaB sraL</A> ta <A href="http://en.wikipedia.org/wiki/Aarhus" title="Aarhus">suhraA</A> tub ",tnatropmi taht t'nerew metsys eht fo ytivitcaretni dna ecnamrofrep eht erehw ,smargorp llams rof" dengised erew snoitatnemelpmi gnitsixe ,elgooG ot gnidroccA .<A href="http://en.wikipedia.org/wiki/Web_application" title="Web application">snoitacilppa bew</A> sa hcus <A href="http://en.wikipedia.org/wiki/Gmail" title="Gmail">liamG</A> ot semoc ti nehw tselluf eht ot resworb bew eht gnisu era" <A href="http://en.wikipedia.org/wiki/Document_Object_Model" title="Document Object Model">MOD</A> dna snoitalupinam <A href="http://en.wikipedia.org/wiki/Javascript" title="Javascript" class="mw-redirect">tpircsavaJ</A>.retsaf krow dluoc taht enigne tpircSavaJ a morf tifeneb yltnacifingis dluow erofereht dna ,"</P>
+<P> eht sesu emorhC<A href="http://en.wikipedia.org/wiki/WebKit" title="WebKit">tiKbeW</A> eht morf ecivda no ,segap bew yalpsid ot enigne gniredner <A href="http://en.wikipedia.org/wiki/Android_(mobile_device_platform)" title="Android (mobile device platform)" class="mw-redirect">diordnA</A>.maet <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>41<SPAN>]</SPAN></A></SUP> htiw esaeler erofeb yllanretni detset ylevisnetxe saw emorhC ,sresworb tsom ekiL <A href="http://en.wikipedia.org/wiki/Unit_testing" title="Unit testing">gnitset tinu</A> dna "snoitca resu detpircs fo gnitset ecafretni resu detamotua" ,<A href="http://en.wikipedia.org/wiki/Fuzz_testing" title="Fuzz testing">gnitset zzuf</A>.setunim 03–02 nihtiw xedni elgooG eht fo edisni setisbew dessecca ylnommoc fo sdnasuoht fo snet tsniaga detset yllacitamotua era sdliub resworb weN .)dessap evah ot demialc si emorhC hcihw fo &#37;99( stset tuoyal s'tiKbeW sa llew sa ,<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>41<SPAN>]</SPAN></A></SUP></P>
+<P> sedulcni emorhC<A href="http://en.wikipedia.org/wiki/Gears_(software)" title="Gears (software)">sraeG</A> rof serutaef sdda hcihw ,<A href="http://en.wikipedia.org/wiki/Web_developer" title="Web developer">srepoleved bew</A>.)troppus enilffo gnidulcni( snoitacilppa bew fo gnidliub eht ot gnitaler yllacipyt <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>41<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> eht fo stluser ehT
+<A href="http://en.wikipedia.org/wiki/Acid3" title="Acid3">3dicA</A>0.3 emorhC elgooG no tset </DIV>
+</DIV>
+</DIV>
+<P> eht dessap emorhC elgooG fo esaeler tsrif ehT<A href="http://en.wikipedia.org/wiki/Acid1" title="Acid1">1dicA</A> dna <A href="http://en.wikipedia.org/wiki/Acid2" title="Acid2">2dicA</A> ton tub ,stset <A href="http://en.wikipedia.org/wiki/Acid3" title="Acid3">3dicA</A> fo snoisrev yraropmetnoc naht rehgih ,stsetbus 001 eht fo tuo 97 derocs ti 3dicA nO .<A href="http://en.wikipedia.org/wiki/Internet_Explorer_7" title="Internet Explorer 7">7 rerolpxE tenretnI</A> ,)001/41( <A href="http://en.wikipedia.org/wiki/Firefox_3" title="Firefox 3" class="mw-redirect">3 xoferiF</A> dna ,)001/17( <A href="http://en.wikipedia.org/wiki/Safari_(browser)" title="Safari (browser)" class="mw-redirect">3 irafaS</A> naht rewol tub ;)001/57( <A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">9 arepO</A>.)001/38( <SUP id="cite_ref-acid_31-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-acid-31"><SPAN>[</SPAN>23<SPAN>]</SPAN></A></SUP>,)001/001( 4 irafaS dna ,)001/001( arepO ,)001/58( 1 ateB 1.3 xoferiF naht rewol derocs emorhC ,irafaS dna ,arepO ,rerolpxE tenretnI ,xoferiF fo sdliub tnempoleved yraropmetnoc htiw derapmoc nehW <SUP id="cite_ref-acid_31-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-acid-31"><SPAN>[</SPAN>23<SPAN>]</SPAN></A></SUP>.)001/12( rerolpxE tenretnI naht rehgih llits tub <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>.)tset knil eht deliaf llits tub( stsetbus 001 lla dessap emorhC elgooG fo 0.2 noisrev ,revewoH <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">dedeen noitatic</A></I>]</SUP>.devloser eb nac meht gnidnuorrus snrecnoc ytiruces litnu delbasid era stnof elbadaolnwod esuaceb renroc thgir reppu eht ni 'X' a swohs tub 001/001 serocs )0.3( noisrev elbats tnerruc ehT <SUP id="cite_ref-33" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-33"><SPAN>[</SPAN>43<SPAN>]</SPAN></A></SUP>.stnof elbadaolnwod dna tset knil eht gnidulcni ,tset 3 dicA eht fo stcepsa lla ssap rehgih dna 4.942.0.4 noisrev htiw gnitrats emorhC elgooG fo sdliub tnempoleveD <SUP id="cite_ref-34" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-34"><SPAN>[</SPAN>53<SPAN>]</SPAN></A></SUP></P>
+<P> a rof snalp decnuonna elgooG ,9002 yluJ 7 nO<A href="http://en.wikipedia.org/wiki/Google_Chrome_OS" title="Google Chrome OS">SO emorhC elgooG</A> dna resworb emorhC eht no desab <A href="http://en.wikipedia.org/wiki/Linux" title="Linux">xuniL</A>.<SUP id="cite_ref-35" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-35"><SPAN>[</SPAN>63<SPAN>]</SPAN></A></SUP></P>
+<P> devorpmi na ,llifotua mrof dedulcni serutaef weN .ytilibats dna deeps desaercni gnitic ,9002 yaM 12 no 0.2 emorhC desaeler elgooG<I>egaP baT weN</I>.edom neercs lluf dna ,<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>73<SPAN>]</SPAN></A></SUP></P>
+<P> ,tnemevorpmi deeps &#37;52 a ti htiw gnignirb ,9002 rebmetpeS 51 no desaeler saw 0.3 noisreV<A href="http://en.wikipedia.org/wiki/HTML5" title="HTML5">5LMTH</A> sa hcus( seitilibapac <CODE>&gt;oediv&lt;</CODE> dna <CODE>&gt;oidua&lt;</CODE> rof troppus evitan htiw stnemele <A href="http://en.wikipedia.org/wiki/Ogg" title="Ogg">ggO</A> <A href="http://en.wikipedia.org/wiki/Theora" title="Theora">aroehT</A> ,oediv <A href="http://en.wikipedia.org/wiki/Ogg_Vorbis" title="Ogg Vorbis" class="mw-redirect">sibroV ggO</A> ,oidua <A href="http://en.wikipedia.org/wiki/H.264" title="H.264" class="mw-redirect">462.H</A> ,oediv <A href="http://en.wikipedia.org/wiki/Advanced_Audio_Coding" title="Advanced Audio Coding">CAA</A> dna <A href="http://en.wikipedia.org/wiki/MP3" title="MP3">3PM</A> devorpmi na ,)oidua <I>xobinmO</I> dengiseder a dna ,troppus emeht ,<I>egaP baT weN</I>.<SUP id="cite_ref-37" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-37"><SPAN>[</SPAN>83<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>93<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>04<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>14<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>24<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Release_history">yrotsih esaeleR</SPAN></H3>
+<TABLE class="wikitable">
+<TBODY><TR>
+<TH>roloC</TH>
+<TH>gninaeM</TH>
+</TR>
+<TR>
+<TD style="background-color:#fa8072;">deR</TD>
+<TD>esaeler dlO</TD>
+</TR>
+<TR>
+<TD style="background-color:#A0E75A;">neerG</TD>
+<TD>esaeler elbats tnerruC</TD>
+</TR>
+<TR>
+<TD style="background-color:#D6B4F1;">elpruP</TD>
+<TD>esaeler tset tnerruC</TD>
+</TR>
+</TBODY></TABLE>
+<TABLE class="wikitable">
+<TBODY><TR>
+<TH>noisrev rojaM</TH>
+<TH>etad esaeleR</TH>
+<TH><A href="http://en.wikipedia.org/wiki/WebKit" title="WebKit">tiKbeW</A><SUP id="cite_ref-42" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-42"><SPAN>[</SPAN>34<SPAN>]</SPAN></A></SUP>/<BR>
+<A href="http://en.wikipedia.org/wiki/V8_JavaScript_engine" title="V8 JavaScript engine" class="mw-redirect">8V</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>noisrev enigne</TH>
+<TH>troppus metsys gnitarepO</TH>
+<TH>segnahc tnacifingiS</TH>
+</TR>
+<TR>
+<TD style="white-space: nowrap;background-color:#fa8072;">2.0</TD>
+<TD style="white-space: nowrap;" width="100px">80-90-8002</TD>
+<TD align="center" width="110px">225<BR>3.0
+</TD>
+<TD align="center" width="65px" rowspan="6">swodniW</TD>
+<TD>esaeler tsriF</TD>
+</TR>
+<TR>
+<TD style="white-space: nowrap;background-color:#fa8072;">3.0</TD>
+<TD style="white-space: nowrap;">92-01-8002</TD>
+<TD align="center">225<BR>3.0
+</TD>
+<TD>.setadpu tnemeganam wodniw dna baT .ytilibailer dna ecnamrofrep yxorp bew devorpmI .sdleif tupni rof gnikcehc llepS .ytilibailer dna ecnamrofrep nigulp devorpmI</TD>
+</TR>
+<TR>
+<TD style="white-space: nowrap;background-color:#fa8072;">4.0</TD>
+<TD style="white-space: nowrap;">42-11-8002</TD>
+<TD align="center">525<BR>3.0
+</TD>
+<TD>.sexif ytiruceS .noitacifiton pupop dekcolb weN .snoitpo noitacilppa eht ot dedda noitces ycavirP .troppus tropxe dna tropmi htiw reganam kramkooB</TD>
+</TR>
+<TR>
+<TD style="white-space: nowrap;background-color:#fa8072;">0.1</TD>
+<TD style="white-space: nowrap;">11-21-8002</TD>
+<TD align="center">825<BR>3.0
+</TD>
+<TD>esaeler elbats tsriF</TD>
+</TR>
+<TR>
+<TD style="white-space: nowrap;background-color:#fa8072;">0.2</TD>
+<TD style="white-space: nowrap;">42-50-9002</TD>
+<TD align="center">035<BR>4.0
+</TD>
+<TD>.troppus yeknomesaerG cisaB .segde potksed dna resworb ot gnikcod baT .eltit yb skramkoob troS .llifotua mroF .mooz egap-lluF .edom neercs-lluF .troppus leehw esuoM .kramhcneb redipsnuS eht no tpircsavaJ retsaf &#37;53</TD>
+</TR>
+<TR>
+<TD style="white-space: nowrap;background-color:#A0E75A;">591.0.3</TD>
+<TD style="white-space: nowrap;">21-01-9002</TD>
+<TD align="center">235<BR>2.1
+</TD>
+<TD>.troppus gat oidua dna oediv 5 LMTH .tpircsavaJ retsaf &#37;52 .noitazimotsuc devorpmi rof egap "bat wen" weN</TD>
+</TR>
+<TR>
+<TD style="white-space: nowrap;background-color:#D6B4F1;">942.0.4</TD>
+<TD style="white-space: nowrap;">32-11-9002</TD>
+<TD align="center">235<BR>3.1
+</TD>
+<TD align="center">swodniW<BR>caM
+<BR>xuniL
+</TD>
+<TD>.troppus egarotSMOD .tset 3dicA ssap yletelpmoC .troppus noisnetxe dna cnys kramkooB</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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Features">serutaeF</SPAN></H2>
+<P>,ecafretni resu citsilaminim s'emorhC ni sreep sti morf secnereffid evisnetxe era erehT .ytilibats dna ,deeps ,ytiruces evorpmi ot smia emorhC elgooG<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>41<SPAN>]</SPAN></A></SUP>.sresworb bew nredom fo lacipyta si hcihw <SUP id="cite_ref-44" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-44"><SPAN>[</SPAN>54<SPAN>]</SPAN></A></SUP> dna ecnamrofrep noitacilppa sti si htgnerts s'emorhC <A href="http://en.wikipedia.org/wiki/JavaScript" title="JavaScript">tpircSavaJ</A>.emit sti fo sresworb rojam eht gnoma tsetfiws eht eb ot setisbew elpitlum yb deifirev yltnednepedni erew hcihw fo htob ,deeps gnissecorp <SUP id="cite_ref-45" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-45"><SPAN>[</SPAN>64<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>74<SPAN>]</SPAN></A></SUP>.meht esaeler ylcilbup dna tnemelpmi ot tsrif eht saw elgooG tub ,srepoleved resworb rehto yb decnuonna ylsuoiverp neeb dah serutaef euqinu s'emorhC fo ynaM <SUP id="cite_ref-47" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-47"><SPAN>[</SPAN>84<SPAN>]</SPAN></A></SUP> tnenimorp tsom sti ,elpmaxe roF <A href="http://en.wikipedia.org/wiki/Graphical_user_interface" title="Graphical user interface">ecafretni resu lacihparg</A> eht fo gnigrem eht ,noitavonni )IUG( <A href="http://en.wikipedia.org/wiki/Address_bar" title="Address bar">rab sserdda</A> eht( rab hcraes dna <I>xobinmO</I> yb decnuonna tsrif saw )<A href="http://en.wikipedia.org/wiki/Mozilla_Corporation" title="Mozilla Corporation">allizoM</A> rof erutaef dennalp a sa 8002 yaM ni <A href="http://en.wikipedia.org/wiki/Mozilla_Firefox" title="Mozilla Firefox">xoferiF</A>.<SUP id="cite_ref-48" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-48"><SPAN>[</SPAN>94<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Security">ytiruceS</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>0.3 emorhC elgooG ni edom otingocnI
+</DIV>
+</DIV>
+</DIV>
+<P> owt fo setadpu sdaolnwod yllacidoirep emorhC<A href="http://en.wikipedia.org/wiki/Blacklist_(computing)" title="Blacklist (computing)">stsilkcalb</A> rof eno( <A href="http://en.wikipedia.org/wiki/Phishing" title="Phishing">gnihsihp</A> rof eno dna <A href="http://en.wikipedia.org/wiki/Malware" title="Malware">erawlam</A> cilbup eerf a aiv srehto yb esu rof elbaliava edam osla si ecivres sihT .etis lufmrah a tisiv ot tpmetta yeht nehw sresu snraw dna ,)<A href="http://en.wikipedia.org/wiki/API" title="API" class="mw-redirect">IPA</A>.erawtfos lufmrah eht fo ecneserp eht fo erawa eb ton yam ohw setis detsil fo srenwo eht seifiton elgooG ."IPA gnisworB efaS elgooG" dellac <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>41<SPAN>]</SPAN></A></SUP></P>
+<P> hcae etacolla yllacipyt lliw emorhC<A href="http://en.wikipedia.org/wiki/Tab_(GUI)" title="Tab (GUI)">bat</A> ot <A href="http://en.wikipedia.org/wiki/Sandbox_(computer_security)" title="Sandbox (computer security)">tif</A> nwo sti otni <A href="http://en.wikipedia.org/wiki/Process_(computing)" title="Process (computing)">ssecorp</A>.xelpmoc erom si ledom noitacolla ssecorp lautca eht revewoh ,"rehtona ni sneppah tahw tceffa ot bat eno ni sneppah tahw gnisu" ro "flesti gnillatsni morf erawlam tneverp" ot <SUP id="cite_ref-49" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-49"><SPAN>[</SPAN>05<SPAN>]</SPAN></A></SUP> eht gniwolloF <A href="http://en.wikipedia.org/wiki/Principle_of_least_privilege" title="Principle of least privilege">egelivirp tsael fo elpicnirp</A> no rerolpxE tenretnI yb desu "edoM detcetorP" eht ot ralimis si siht—)potksed ,stnemucod .g.e( saera evitisnes morf daer ro selif etirw tonnac tub ,etupmoc nac dna sthgir sti fo deppirts si ssecorp hcae ,<A href="http://en.wikipedia.org/wiki/Windows_Vista" title="Windows Vista">atsiV swodniW</A> dna <A href="http://en.wikipedia.org/wiki/Windows_7" title="Windows 7">7 swodniW</A> ehT .<I>maeT xobdnaS</I> a otni ti edam dna yradnuob ssecorp gnitsixe siht nekat" evah ot dias si <A href="http://en.wikipedia.org/wiki/Operating_system-level_virtualization" title="Operating system-level virtualization">liaj</A>;"<SUP id="cite_ref-50" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-50"><SPAN>[</SPAN>15<SPAN>]</SPAN></A></SUP>.desolc si bat eht nehw detanimret eb lliw ti dna "pu-trats no elbatucexe na nur" ot swodniW llet ro ,stupni esuom htiw tcaretni ,bat rehtona ni deretne srebmun drac tiderc ffins ot elbanu eb ot desoppus si bat eno ni gninnur erawtfos suoicilam ,elpmaxe rof <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>41<SPAN>]</SPAN></A></SUP> elpmis a secrofne sihT <A href="http://en.wikipedia.org/wiki/Computer_security_model" title="Computer security model">ledom ytiruces retupmoc</A> fo slevel owt era ereht yberehw <A href="http://en.wikipedia.org/wiki/Multilevel_security" title="Multilevel security">ytiruces levelitlum</A>( <I>resu</I> dna <I>xobdnas</I> eht dna )<I>xobdnas</I> eht yb detaitini stseuqer noitacinummoc ot dnopser ylno nac <I>resu</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>25<SPAN>]</SPAN></A></SUP></P>
+<P> ,yllacipyT<A href="http://en.wikipedia.org/wiki/Plugin" title="Plugin" class="mw-redirect">snigulp</A> sa hcus <A href="http://en.wikipedia.org/wiki/Adobe_Flash_Player" title="Adobe Flash Player">reyalP hsalF ebodA</A> siht nihtiw etarepo ot deifidom eb ot deen lliw snigulP .sessecorp bat-rep detacided ni "segelivirp wol yrev" ta gnitarepo flesti ,reredner eht htiw etacinummoc taht sessecorp etarapes ni nur era snigulp ,kcatta ot erusopxe ecuder oT .flesti resworb eht fo level ytiruces eht ,evoba ro ,ta nur ot deen netfo esehT .eb nac sbat sa dexobdnas eb tonnac ,hcus sa dna dezidradnats ton era <A href="http://en.wikipedia.org/wiki/Software_architecture" title="Software architecture">erutcetihcra erawtfos</A> eht gniwollof elihw <A href="http://en.wikipedia.org/wiki/Principle_of_least_privilege" title="Principle of least privilege">egelivirp tsael fo elpicnirp</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>41<SPAN>]</SPAN></A></SUP> eht stroppus emorhC <A href="http://en.wikipedia.org/wiki/Netscape_Plugin_Application_Programming_Interface" title="Netscape Plugin Application Programming Interface" class="mw-redirect">ecafretnI gnimmargorP noitacilppA nigulP epacsteN</A>,)IPAPN( <SUP id="cite_ref-52" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-52"><SPAN>[</SPAN>35<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>45<SPAN>]</SPAN></A></SUP> fo gniddebme eht troppus ton seod tub <A href="http://en.wikipedia.org/wiki/ActiveX" title="ActiveX">XevitcA</A>.slortnoc <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>45<SPAN>]</SPAN></A></SUP> <A href="http://en.wikipedia.org/wiki/Java_applet" title="Java applet">stelppa avaJ</A>.evoba dna 21 etadpu 6 avaJ htiw emorhC ni elbaliava si troppus <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">gnisworb etavirp</A> dellac erutaef <I>otingocnI</I> ro noitamrofni yrotsih yna gnirots morf resworb eht stneverp taht dedivorp si edom <A href="http://en.wikipedia.org/wiki/HTTP_cookie" title="HTTP cookie">seikooc</A> ni elbaliava erutaef gnisworb etavirp eht ot ralimis si edom otingocnI .detisiv setisbew eht morf <A href="http://en.wikipedia.org/wiki/Apple_Inc." title="Apple Inc.">elppA</A> s'<A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">irafaS</A> ,<A href="http://en.wikipedia.org/wiki/Mozilla_Firefox_3.5" title="Mozilla Firefox 3.5">5.3 xoferiF allizoM</A> dna ,<A href="http://en.wikipedia.org/wiki/Internet_Explorer_8" title="Internet Explorer 8">8 rerolpxE tenretnI</A>.<SUP id="cite_ref-55" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-55"><SPAN>[</SPAN>65<SPAN>]</SPAN></A></SUP></P>
+<P> A<A href="http://en.wikipedia.org/wiki/Denial-of-service_attack" title="Denial-of-service attack">ecivres-fo-lained</A>.resworb bew elohw eht hsarc ot egap bew suoicilam a dewolla taht dnuof saw ytilibarenluv <SUP id="cite_ref-56" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-56"><SPAN>[</SPAN>75<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>85<SPAN>]</SPAN></A></SUP>.esaeler 92.941.2.0 eht ni dexif saw ti dna ,walf eht demrifnoc srepoleved emorhC elgooG <SUP id="cite_ref-58" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-58"><SPAN>[</SPAN>95<SPAN>]</SPAN></A></SUP>.metsys s'mitciv a no edoc elitsoh etucexe dna resworb eht hsarc ot etis bew desimorpmoc ro suoicilam a wolla dluow taht 33.271.0.2 ot roirp snoisrev ni ytilibarenluv a gnidulcni ,emorhC ni derevocsid neeb evah seussi ytiruces rehtO <SUP id="cite_ref-59" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-59"><SPAN>[</SPAN>06<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Speed">deepS</SPAN></H3>
+<P> ehT<A href="http://en.wikipedia.org/wiki/JavaScript" title="JavaScript">tpircSavaJ</A> <A href="http://en.wikipedia.org/wiki/Virtual_machine" title="Virtual machine">enihcam lautriv</A> eht ,emorhC yb desu <A href="http://en.wikipedia.org/wiki/V8_JavaScript_engine" title="V8 JavaScript engine" class="mw-redirect">enigne tpircSavaJ 8V</A> sa hcus serutaef sah ,<I><A href="http://en.wikipedia.org/wiki/Just-in-time_compilation" title="Just-in-time compilation">noitareneg edoc cimanyd</A></I> ,<I>snoitisnart ssalc neddih</I> dna <I><A href="http://en.wikipedia.org/wiki/Garbage_collection_(computer_science)#Precise_vs._conservative_and_internal_pointers" title="Garbage collection (computer science)">noitcelloc egabrag esicerp</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>41<SPAN>]</SPAN></A></SUP> sa tsaf sa eciwt tuoba saw 8V taht dewohs 8002 rebmetpeS ni elgooG yb stseT <A href="http://en.wikipedia.org/wiki/Mozilla_Firefox_3.0" title="Mozilla Firefox 3.0" class="mw-redirect">0.3 xoferiF</A>.seilthgin tiKbeW eht dna </P>
+<P> eht gnisu stset kramhcneb demrofrep setisbew lareveS<A href="http://en.wikipedia.org/wiki/WebKit#SunSpider" title="WebKit">kramhcneB tpircSavaJ redipSnuS</A> edulcni hcihw ,skramhcneb esnetni yllanoitatupmoc fo tes nwo s'elgooG sa llew sa loot <A href="http://en.wikipedia.org/wiki/Ray_tracing_(graphics)" title="Ray tracing (graphics)">gnicart yar</A> dna <A href="http://en.wikipedia.org/wiki/Constraint_solving" title="Constraint solving" class="mw-redirect">gnivlos tniartsnoc</A>.<SUP id="cite_ref-60" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-60"><SPAN>[</SPAN>16<SPAN>]</SPAN></A></SUP> gnidulcni ,detset neeb dah ti hcihw tsniaga srotitepmoc lla naht retsaf hcum demrofrep emorhC taht detroper ylsuominanu yehT <A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">irafaS</A> ,<A href="http://en.wikipedia.org/wiki/Firefox_3.0" title="Firefox 3.0" class="mw-redirect">0.3 xoferiF</A> ,<A href="http://en.wikipedia.org/wiki/Internet_Explorer_7" title="Internet Explorer 7">7 rerolpxE tenretnI</A> ,<A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">arepO</A> dna ,<A href="http://en.wikipedia.org/wiki/Internet_Explorer_8" title="Internet Explorer 8">8 rerolpxE tenretnI</A>.<SUP id="cite_ref-61" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-61"><SPAN>[</SPAN>26<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>36<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>46<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>56<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>76<SPAN>]</SPAN></A></SUP></P>
+<P> nwo rieht taht gnitats yb dednopser allizoM ,8002 ,3 rebmetpeS nO<A href="http://en.wikipedia.org/wiki/TraceMonkey" title="TraceMonkey" class="mw-redirect">yeknoMecarT</A>.stset emos ni enigne 8V s'emorhC naht retsaf saw ,)ateb ni neht( enigne tpircSavaJ <SUP id="cite_ref-67" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-67"><SPAN>[</SPAN>86<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>96<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>07<SPAN>]</SPAN></A></SUP> <A href="http://en.wikipedia.org/wiki/John_Resig" title="John Resig">giseR nhoJ</A> no ylroop demrofrep 0.3 xoferiF taht detats eH .smargorp laer fo evitatneserper saw etius s'elgooG rehtehw denoitseuq eh tub ,sresworb rehto "gnitamiced" emorhC gnidnif ,etius nwo s'elgooG no sresworb tnereffid fo ecnamrofrep eht no detnemmoc rehtruf ,tsilegnave tpircSavaJ s'allizoM ,<A href="http://en.wikipedia.org/wiki/Recursion" title="Recursion">noisrucer</A>.tey gnicart-noisrucer detnemelpmi ton dah maet allizoM eht esuaceb ,elgooG fo esoht sa hcus ,skramhcneb evisnetni <SUP id="cite_ref-70" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-70"><SPAN>[</SPAN>17<SPAN>]</SPAN></A></SUP></P>
+<P> ,enigne tpircSavaJ wen a decnuonna maet tiKbeW eht hcnual s'emorhC retfa skeew owT<A href="http://en.wikipedia.org/wiki/WebKit#Further_development" title="WebKit">emertxE hsiFlerriuqS</A>,<SUP id="cite_ref-71" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-71"><SPAN>[</SPAN>27<SPAN>]</SPAN></A></SUP>.enigne 8V s'emorhC revo tnemevorpmi deeps &#37;63 a gnitic <SUP id="cite_ref-72" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-72"><SPAN>[</SPAN>37<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>47<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>57<SPAN>]</SPAN></A></SUP></P>
+<P> sesu osla emorhC<A href="http://en.wikipedia.org/wiki/Domain_Name_System" title="Domain Name System">SND</A>.spukool etisbew pu deeps ot gnihcteferp <SUP id="cite_ref-features_75-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-features-75"><SPAN>[</SPAN>67<SPAN>]</SPAN></A></SUP>.5.3 xoferiF ni tluafed yb delbane dna ni-tliub si dna ,noisnetxe na sa rerolpxE tenretnI ni elbaliava si erutaef sihT </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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Stability">ytilibatS</SPAN></H3>
+<P> ehT<A href="http://en.wikipedia.org/wiki/Gears_(software)" title="Gears (software)">sraeG</A>,emorhC ni erutcetihcra ssecorp-itlum a detnemelpmi maet <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> ot ralimis <I><A href="http://en.wikipedia.org/wiki/IE8#Software_architecture_.26_LCIE" title="IE8" class="mw-redirect">)EICL( rerolpxE tenretnI delpuoC ylesooL</A></I> yb detnemelpmi <A href="http://en.wikipedia.org/wiki/Internet_Explorer_8" title="Internet Explorer 8">8 rerolpxE tenretnI</A>.<SUP id="cite_ref-77" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-77"><SPAN>[</SPAN>87<SPAN>]</SPAN></A></SUP> sa ot derrefer erudecorp a ,nigulp dna ecnatsni etis hcae ot detacolla si ssecorp etarapes a ,tluafed yB <A href="http://en.wikipedia.org/wiki/Process_isolation" title="Process isolation">noitalosi ssecorp</A>.<SUP id="cite_ref-78" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-78"><SPAN>[</SPAN>97<SPAN>]</SPAN></A></SUP>srehto ot ssecca niag tonnac noitacilppa eno ot ssecca gniniag yllufsseccus rekcatta nA .ytilibats dna ytiruces gnisaercni ,rehto hcae htiw gnirefretni morf sksat stneverp sihT <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">dedeen noitatic</A></I>]</SUP> a ni stluser ecnatsni eno ni eruliaf dna ,<A href="http://en.wikipedia.org/wiki/Screens_of_death#Sad_Tab" title="Screens of death">baT daS</A> <A href="http://en.wikipedia.org/wiki/Screens_of_death" title="Screens of death">htaed fo neercs</A> nwonk-llew eht ot ralimis ,<A href="http://en.wikipedia.org/wiki/Screens_of_death#Sad_Mac" title="Screens of death">caM daS</A>.snoitacolla yromem rehtruf seriuqer regnol on dna ecnatsni hcae ot denifnoc si noitatnemgarf sa llarevo taolb yromem ssel ni stluser tub ,tnorf pu tsoc ssecorp-rep dexif a stcaxe ygetarts sihT .noitacilppa elohw eht fo daetsni sehsarc bat elgnis a ylno tpecxe ,<SUP id="cite_ref-79" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-79"><SPAN>[</SPAN>08<SPAN>]</SPAN></A></SUP></P>
+<P> a sedulcni emorhC<A href="http://en.wikipedia.org/wiki/Process_management_(computing)" title="Process management (computing)">tnemeganam ssecorp</A> dellac ytilitu <I>reganaM ksaT</I> tsom eht gnisu era setis tahw ees" ot resu eht swolla hcihw <A href="http://en.wikipedia.org/wiki/Random_access_memory" title="Random access memory" class="mw-redirect">yromem</A> ,<A href="http://en.wikipedia.org/wiki/Download" title="Download" class="mw-redirect">gnidaolnwod</A> tsom eht <A href="http://en.wikipedia.org/wiki/Byte" title="Byte">setyb</A> ]rieht[ gnisuba dna <A href="http://en.wikipedia.org/wiki/Central_processing_unit" title="Central processing unit">UPC</A>.meht etanimret dna )sessecorp etarapes ni nur hcihw snigulp eht sa llew sa( "<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>41<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="User_interface">ecafretni resU</SPAN></H3>
+<P> niam eht ,tluafed yB<A href="http://en.wikipedia.org/wiki/User_interface" title="User interface">ecafretni resu</A>.egap emoh motsuc a ro egaP baT weN eht ot resu eht ekat ot snoitpo hguorht derugifnoc eb nac nottub emoh ehT .snottub lecnac dna ,og ,kramkoob ,emoh ,hserfer ,drawrof ,kcab sedulcni </P>
+<P><A href="http://en.wikipedia.org/wiki/Tab_(GUI)" title="Tab (GUI)">sbaT</A> no desab era hcihw sresworb debbat gnitsixe ynam htiw stsartnoc egnahc eltbus sihT .slortnoc eht woleb naht rehtar wodniw eht fo pot eht ot devom neeb evah ,hcus sa dna ecafretni resu s'emorhC fo tnenopmoc yramirp eht era <A href="http://en.wikipedia.org/wiki/Window_(computing)" title="Window (computing)">swodniw</A> niatnoc dna <A href="http://en.wikipedia.org/wiki/Tab_(GUI)" title="Tab (GUI)">sbat</A> eht gnidulcni ,slortnoc fo tes nwo sti sah bat hcaE .gniggard yb sreniatnoc wodniw neewteb ylsselmaes derrefsnart eb nac )etats rieht gnidulcni( sbaT .<I>xobinmO</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>41<SPAN>]</SPAN></A></SUP></P>
+<P> ehT<I>xobinmO</I> eht si <A href="http://en.wikipedia.org/wiki/Address_bar" title="Address bar">xob LRU</A> sserp uoy tel lliw emorhC ,morf dehcraes ylsuoiverp evah uoy etis a fo LRU eht retne uoy fI .xob hcraes dna rab sserddA eht htob fo ytilanoitcnuf eht senibmoc hcihw ,bat hcae fo pot eht ta <I>baT</I> yb derewop - erofeb detisiv ylirassecen ton( setisbew ralupop ,)txet egap-ni ro LRU eht no desab( setis detisiv ylsuoiverp rof snoitseggus sedivorp emorhC ,xobinmO eht ni gnipyt trats uoy nehW .xobinmO eht morf yltcerid niaga etis eht hcraes ot <A href="http://en.wikipedia.org/wiki/Google_Suggest" title="Google Suggest" class="mw-redirect">tsegguS elgooG</A> osla lliw emorhC .sehcraes ralupop dna ,)<A href="http://en.wikipedia.org/wiki/Autocomplete" title="Autocomplete">etelpmocotua</A>.netfo tisiv uoy setis fo sLRU eht <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>41<SPAN>]</SPAN></A></SUP>.enigne hcraes tluafed ruoy gnisu hcraes eht tcudnoc lliw emorhC ,retne sserp dna xobinmO eht otni sdrowyek lareves epyt uoy fI </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>.rab eltit eht fo pot eht htiw hsulf era sbat eht ,dezimixam si emorhC nehW
+</DIV>
+</DIV>
+</DIV>
+<P>.emorhc resworb eht sa llew sa ecafretni s'metsys gnitarepo eht sedih taht edom neercs-lluf a sah ti ,sresworb rehto ekiL .rabeltit eht fo pot eht htiw hsulf emoceb sbat eht ,dezimixam nehW .rab eltit eht rednu yltcerid sraeppa rab bat eht ,dezimixam ton si emorhC elgooG nehW</P>
+<P> eht si serutaef gnitaitnereffid s'emorhC fo enO<I>egaP baT weN</I> resworb eht ecalper nac hcihw ,<A href="http://en.wikipedia.org/wiki/Home_page" title="Home page" class="mw-redirect">egap emoh</A> ot ralimis ;sbat desolc yltnecer dna ,skramkoob tnecer ,sehcraes tneuqerf htiw gnola ,setis bew detisiv tsom enin eht fo slianbmuht dewohs siht ,yllanigirO .detaerc si bat wen a nehw deyalpsid si dna <A href="http://en.wikipedia.org/wiki/Internet_Explorer" title="Internet Explorer">rerolpxE tenretnI</A> dna <A href="http://en.wikipedia.org/wiki/Firefox" title="Firefox" class="mw-redirect">xoferiF</A> htiw <A href="http://en.wikipedia.org/wiki/Google_Toolbar" title="Google Toolbar">6 rablooT elgooG</A> ro ,<A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">s'arepO</A>.laiD deepS <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>41<SPAN>]</SPAN></A></SUP>.raeppa ot tnaw t'ndid yeht slianbmuht edih ot sresu wolla ot detadpu saw egaP baT weN eht ,0.2 emorhC elgooG nI <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>73<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>0.3 emorhC elgooG ni egap baT weN ehT
+</DIV>
+</DIV>
+</DIV>
+<P>.resworb eht gnisu rof skcirt dna stnih syalpsid taht noitces "spit" a dna sbat desolc yltnecer swohs taht rab "desolc yltneceR" a serutaef osla tI .slianbmuht fo daetsni deyalpsid eb dluoc sknil txet fo tsil a ,ylevitanretlA .devomer dna ,dennip ,degnarraer eb dluoc slianbmuht ehT .setis bew detisiv tsom 8 eht fo slianbmuht yalpsid ot depmaver saw egaP baT weN eht ,0.3 noisrev ni gnitratS<SUP id="cite_ref-80" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-80"><SPAN>[</SPAN>18<SPAN>]</SPAN></A></SUP></P>
+<P> eht gniddA .unem a morf dessecca eb nac taht reganam kramkoob a sedulcni emorhC<A href="http://en.wikipedia.org/wiki/Command-line_interface" title="Command-line interface">enil-dnammoc</A> :noitpo <I>unem-kramkoob--</I>.rab skramkoob eht fo ecalp ni desu eb nac taht xobinmO eht fo thgir eht ot nottub skramkoob a sdda <SUP id="cite_ref-81" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-81"><SPAN>[</SPAN>28<SPAN>]</SPAN></A></SUP></P>
+<P><A href="http://en.wikipedia.org/wiki/Popup" title="Popup">pupoP</A>.tuo meht sgard ylticilpxe resu eht sselnu bat eht edistuo raeppa ton lliw dna "morf emac yeht bat eht ot depocs era" swodniw <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>41<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>sgnittes tluafed htiw 0.3 emorhC elgooG ni wodniw snoitpo ehT
+</DIV>
+</DIV>
+</DIV>
+<P> :sbat eerht sah wodniw snoitpo s'emorhC elgooG<I>cisaB</I> ,<I>ffutS lanosreP</I> dna ,<I>dooH eht rednU</I> ehT .<I>cisaB</I> ehT .resworb tluafed dna ,enigne hcraes ,egap emoh eht rof snoitpo sedulcni bat <I>ffutS lanosreP</I> ehT .semeht dna ,atad gnisworb ,llifotua mrof ,sdrowssap devas erugifnoc uoy stel bat <I>dooH eht rednU</I>.sgnittes ytiruces dna ,daolnwod ,ycavirp ,krowten egnahc ot uoy swolla bat </P>
+<P> potksed lacol ekam ot sresu swolla emorhC<A href="http://en.wikipedia.org/wiki/Computer_shortcut" title="Computer shortcut">stuctrohs</A> nepo taht <A href="http://en.wikipedia.org/wiki/Web_application" title="Web application">snoitacilppa bew</A> lacol edisgnola nur ot snoitacilppa bew swolla sihT ".od ot gniyrt si resu eht gnihtyna tpurretni" ot ton sa os ,rab eltit eht rof tpecxe ecafretni raluger eht fo enon sniatnoc ,yaw siht ni denepo nehw ,resworb ehT .resworb eht ni <A href="http://en.wikipedia.org/wiki/Software" title="Software" class="mw-redirect">erawtfos</A> ot ralimis( <A href="http://en.wikipedia.org/wiki/Mozilla_Prism" title="Mozilla Prism">msirP allizoM</A> dna <A href="http://en.wikipedia.org/wiki/Fluid_(browser" title="Fluid (browser" class="mw-redirect">diulF</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>41<SPAN>]</SPAN></A></SUP></P>
+<P>.egap tnaveler eht fo tfel mottob eht ta pu spop taht elbbub sutats a aiv noitamrofni revo-revoh dna ytivitca gnidaol syalpsid tub ,rab sutats a evah ton seod emorhC</P>
+<P> roF<A href="http://en.wikipedia.org/wiki/Web_developer" title="Web developer">srepoleved bew</A> ni eno eht ot ralimis rotcepsni tnemele na serutaef emorhC ,<A href="http://en.wikipedia.org/wiki/Firebug_(Firefox_extension)" title="Firebug (Firefox extension)">guberiF</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>67<SPAN>]</SPAN></A></SUP></P>
+<P> s'elgooG fo trap sA<A href="http://en.wikipedia.org/wiki/Google%27s_hoaxes#2009" title="Google&#39;s hoaxes">sekoj yaD 'slooF lirpA</A> ni segap redner ot elba gnieb fo erutaef lanoitidda eht htiw 9002 lirpA 1 no desaeler saw emorhC fo dliub laiceps a ,<A href="http://en.wikipedia.org/wiki/Anaglyph_image" title="Anaglyph image">D3 hpylgana</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>38<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Extensions">snoisnetxE</SPAN></H3>
+<P> na taht detats yeht ,8002 ,rebmetpeS ni emorhC dehcnual elgooG nehW<A href="http://en.wikipedia.org/wiki/Application_programming_interface" title="Application programming interface">ecafretni gnimmargorp noitacilppa</A>.dennalp saw <SUP id="cite_ref-83" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-83"><SPAN>[</SPAN>48<SPAN>]</SPAN></A></SUP>.nugeb dah metsys noisnetxe na fo tnempoleved taht decnuonna yeht ,8002 rebmeceD 1 nO <SUP id="cite_ref-84" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-84"><SPAN>[</SPAN>58<SPAN>]</SPAN></A></SUP>.O/I elgooG ta ,9002 yaM ni decnuonna erew sliateD <SUP id="cite_ref-85" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-85"><SPAN>[</SPAN>68<SPAN>]</SPAN></A></SUP></P>
+<P>.gnitset rof snoisnetxe elpmas lareves dedivorp dna ,lennahc veD s'emorhC no tluafed yb snoisnetxe delbane elgooG ,9002 rebmetpeS 9 nO<SUP id="cite_ref-86" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-86"><SPAN>[</SPAN>78<SPAN>]</SPAN></A></SUP>.noos hcnual ateb cilbup a gnisimorp ,snoissimbus repoleved ot yrellag noisnetxe s'emorhC denepo elgooG ,9002 rebmevoN 32 nO <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>.snoisnetxe 003 revo gniniatnoc ,9002 rebmeceD 8 no dehcnual yllaiciffo saw ateb yrellag noisnetxe ehT <SUP id="cite_ref-88" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-88"><SPAN>[</SPAN>98<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Themes">semehT</SPAN></H3>
+<P>.resworb eht fo ecnaraeppa eht retla ot semeht llatsni nac sresu ,0.3 emorhC elgooG htiw gnitratS<SUP id="cite_ref-89" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-89"><SPAN>[</SPAN>09<SPAN>]</SPAN></A></SUP>,yrellag enilno na ni dedivorp era semeht ytrap-driht eerf ynaM <SUP id="cite_ref-90" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-90"><SPAN>[</SPAN>19<SPAN>]</SPAN></A></SUP>.snoitpo s'emorhC ni nottub "semeht teG" a hguorht elbissecca <SUP id="cite_ref-91" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-91"><SPAN>[</SPAN>29<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Usage_tracking">gnikcart egasU</SPAN></H3>
+<P> ot egasu sti tuoba sliated sdnes emorhC<A href="http://en.wikipedia.org/wiki/Google" title="Google">elgooG</A>.smsinahcem gnikcart resu lanoitpo-non dna lanoitpo htob hguorht <SUP id="cite_ref-92" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-92"><SPAN>[</SPAN>39<SPAN>]</SPAN></A></SUP></P>
+<TABLE class="wikitable" border="1" width="64%">
+<CAPTION>sdohtem gnikcarT</CAPTION>
+<TBODY><TR>
+<TH>dohteM<SUP id="cite_ref-iron_93-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-iron-93"><SPAN>[</SPAN>49<SPAN>]</SPAN></A></SUP></TH>
+<TH>tnes noitamrofnI</TH>
+<TH>nehW</TH>
+<TH>?lanoitpO</TH>
+</TR>
+<TR>
+<TD valign="top"><B>reifitnedi ZLR</B><SUP id="cite_ref-94" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-94"><SPAN>[</SPAN>59<SPAN>]</SPAN></A></SUP></TD>
+<TD>.dellatsni saw emorhC nehw sa hcus noitamrofni gniyfitnedi-non sniatnoc ,elgooG ot gnidrocca ,gnirts dedocnE<SUP id="cite_ref-95" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-95"><SPAN>[</SPAN>69<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>79<SPAN>]</SPAN></A></SUP></TD>
+<TD>
+<UL>
+<LI>sruoh 42 yrevE</LI>
+<LI>yreuq hcraes elgooG nO</LI>
+<LI>"rucco stneve tnacifingis" nehW</LI>
+</UL>
+</TD>
+<TD style="background:#ff9090; color:black;" class="table-no">oN</TD>
+</TR>
+<TR>
+<TD valign="top"><B>DItneilc</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>89<SPAN>]</SPAN></A></SUP></TD>
+<TD>ecivres scitsitats rof desu reifitnedI euqinU</TD>
+<TD style="background: #e4e4e4; color: black;" class="table-unknown">nwonknU</TD>
+<TD style="background:#90ff90; color:black;" class="table-yes">seY</TD>
+</TR>
+<TR>
+<TD valign="top"><B>tsegguS</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>89<SPAN>]</SPAN></A></SUP></TD>
+<TD> eht otni depyt txeT<A href="http://en.wikipedia.org/wiki/Address_bar" title="Address bar">rab sserdda</A></TD>
+<TD>depyt gnieb elihW</TD>
+<TD style="background:#90ff90; color:black;" class="table-yes">seY</TD>
+</TR>
+<TR>
+<TD valign="top"><B>dnuof ton egaP</B></TD>
+<TD>rab sserdda eht otni depyt txeT</TD>
+<TD>esnopser "dnuof ton revreS" gniviecer nopU</TD>
+<TD style="background:#90ff90; color:black;" class="table-yes">seY</TD>
+</TR>
+<TR>
+<TD valign="top"><B>rekcart guB</B></TD>
+<TD>seruliaf dna sehsarc tuoba sliateD</TD>
+<TD style="background: #e4e4e4; color: black;" class="table-unknown">nwonknU</TD>
+<TD style="background:#90ff90; color:black;" class="table-yes">seY</TD>
+</TR>
+</TBODY></TABLE>
+<P>ecafretni noitallatsni eht hguorht delbasid dna delbane yllanoitpo eb nac smsinahcem gnikcart eht fo emoS<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">dedeen noitatic</A></I>]</SUP>.golaid snoitpo s'resworb eht hguorht dna <SUP id="cite_ref-blogoscoped_97-2" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-blogoscoped-97"><SPAN>[</SPAN>89<SPAN>]</SPAN></A></SUP> A <A href="http://en.wikipedia.org/wiki/Freeware" title="Freeware">eraweerf</A>.evird drah eht no DItneilc eht esare ot edam neeb sah emorhCnU dellac margorp <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> sa hcus ,sdliub laiciffonU <A href="http://en.wikipedia.org/wiki/SRWare_Iron" title="SRWare Iron">norI eraWRS</A>.rehtegotla resworb eht morf serutaef eseht evomer ot kees ,<SUP id="cite_ref-iron_93-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-iron-93"><SPAN>[</SPAN>49<SPAN>]</SPAN></A></SUP>.rehtie resworb muimorhC eht ni dedulcni ton si erutaef ZLR ehT <SUP id="cite_ref-privacy_96-1" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-privacy-96"><SPAN>[</SPAN>79<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Release_channels_and_updates">setadpu dna slennahc esaeleR</SPAN></H3>
+<P>.semit ta elbatsnu yrev eb nac dna )liaf semitemos dna( detset teg saedi erehw si lennahc repoleveD ehT .lennahc repoleveD eht morf serutaef etelpmoc dna elbats htiw ylhtnom ylhguor detadpu eb lliw lennahc ateB eht dna ,lennahc ateB eht ni detset ylhguoroht neeb evah yeht ecno sexif dna serutaef htiw detadpu eb lliw lennahc elbats ehT .doirep ateB s'emorhC elgooG gnirud gnitteg erew sresu lennahc repoleveD taht esoht naht dehsilop dna elbats ssel era sdliub lennahc repoleveD eht taht si elgooG yb nevig nosaer ehT .lennahc ateB eht ot devom erew sresu lennahc repoleveD suoiverp llA .weiverp repoleveD dna ateB :slennahc owt ylno erew ereht egnahc siht erofeB .)lennahc "veD" eht dellac( weiverp repoleveD dna ,ateB ,elbatS :slennahc tcnitsid eerht htiw metsys esaeler wen a decudortni elgooG 9002 yraunaJ 8 nO<SUP id="cite_ref-99" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-99"><SPAN>[</SPAN>001<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> sesu ti ,swodniW nO .mroftalp yb reffid sliated ehT .etad ot pu flesti speek yllacitamotua emorhC<A href="http://en.wikipedia.org/wiki/Google_Updater" title="Google Updater" class="mw-redirect">retadpU elgooG</A> aiv dellortnoc eb nac etadpuotua dna ,<A href="http://en.wikipedia.org/wiki/Group_Policy" title="Group Policy">yciloP puorG</A>,<SUP id="cite_ref-101" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-101"><SPAN>[</SPAN>201<SPAN>]</SPAN></A></SUP> a daolnwod nac uoy ro <A href="http://en.wikipedia.org/wiki/Standalone_software" title="Standalone software">enoladnats</A>.etadpuotua ton seod taht noisrev <SUP id="cite_ref-102" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-102"><SPAN>[</SPAN>301<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>401<SPAN>]</SPAN></A></SUP>.metsys "stluafed" X SO caM eht aiv dellortnoc eb nac etadpuotua dna ,ecivreS etadpU elgooG sesu ti ,caM nO <SUP id="cite_ref-104" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-104"><SPAN>[</SPAN>501<SPAN>]</SPAN></A></SUP> lamron s'metsys eht stel ti ,xuniL nO <A href="http://en.wikipedia.org/wiki/Package_management_system" title="Package management system">metsys tnemeganam egakcap</A>.setadpu eht od </P>
+<P>.swalf ytiruces derevocsid ylwen fo ytilibarenluv fo wodniw eht gnicuder ybereht ,ylkciuq sresu ot emorhC fo snoisrev wen hsup ot elgooG wolla dna sexif ytiruces ronim ot detius llew era setadpu ynit esehT .ot detadpu yllacitamotua eb ot tuoba s'taht noisrev wen eht ot noitaler ni noisrev tnerruc s'resu eht fo ecnereffid yranib eht edivorp ot mhtirogla ettegruoC sti sesu elgooG<SUP id="cite_ref-105" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-105"><SPAN>[</SPAN>601<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Reception">noitpeceR</SPAN></H2>
+<P><I><A href="http://en.wikipedia.org/wiki/The_Daily_Telegraph" title="The Daily Telegraph">hpargeleT yliaD ehT</A>'</I>".lavir tfosorciM sti ot taerht a eb—tey—ton yam tub ,serutaef wen evisserpmi emos sah dna tsaf ,evitcartta si emorhC elgooG" :sreweiver ylrae fo tcidrev eht sezirammus erooM wehttaM s<SUP id="cite_ref-106" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-106"><SPAN>[</SPAN>701<SPAN>]</SPAN></A></SUP></P>
+<P> ecarbme lliw elpoep tsom taht detciderp" dna "emorhC morf taerht eht nwod deyalp" yldetroper tfosorciM<A href="http://en.wikipedia.org/wiki/Internet_Explorer_8" title="Internet Explorer 8">8 rerolpxE tenretnI</A> ".<A href="http://en.wikipedia.org/wiki/Opera_Software" title="Opera Software">erawtfoS arepO</A>".dlrow eht ni mroftalp noitacilppa tseggib eht sa beW eht nehtgnerts lliw emorhC" taht dias <SUP id="cite_ref-ap_107-0" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-ap-107"><SPAN>[</SPAN>801<SPAN>]</SPAN></A></SUP> tceffa ton dluohs ti taht eromrehtruf dna ,"xoferiF htiw gnitepmoc ta demia ton si emorhC" taht ,"esirprus laer on" sa semoc tekram resworb bew eht otni noitcudortni s'emorhC taht dias allizoM <A href="http://en.wikipedia.org/wiki/Mozilla_Foundation#Financing" title="Mozilla Foundation">allizoM htiw pihsnoitaler eunever s'elgooG</A>.<SUP id="cite_ref-108" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-108"><SPAN>[</SPAN>901<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>011<SPAN>]</SPAN></A></SUP></P>
+<BLOCKQUOTE class="templatequote">
+<DIV>" dellac-os dna potksed neewteb pag eht segdirb ngised s'emorhC<A href="http://en.wikipedia.org/wiki/Cloud_computing" title="Cloud computing">gnitupmoc duolc</A> ,potksed a ekam uoy stel emorhC ,nottub a fo hcuot eht tA ".<A href="http://en.wikipedia.org/wiki/Start_menu" title="Start menu">unem tratS</A> ro ,<A href="http://en.wikipedia.org/wiki/Quick_Launch" title="Quick Launch" class="mw-redirect">hcnuaL kciuQ</A> ro egap beW yna ot tuctrohs <A href="http://en.wikipedia.org/wiki/Web_application" title="Web application">noitacilppa beW</A> rof tuctrohs potksed a detaerc I ,elpmaxe roF .CP ruoy edisni s'tahw dna enilno s'tahw neewteb enil eht gnirrulb ,<A href="http://en.wikipedia.org/wiki/Google_Maps" title="Google Maps">spaM elgooG</A> eht fo lla yawa spirts emorhC ,noitacilppa beW a rof tuctrohs a etaerc uoy nehW .<A href="http://en.wikipedia.org/wiki/Toolbar" title="Toolbar">srabloot</A> a ekil erom hcum sleef taht gnihtemos htiw uoy gnivael ,wodniw eht morf sbat dna <A href="http://en.wikipedia.org/wiki/Desktop_application" title="Desktop application" class="mw-redirect">noitacilppa potksed</A>.egap ro noitacilppa beW a ekil naht </DIV>
+<DIV class="templatequotecite">—<CITE><A href="http://en.wikipedia.org/wiki/PC_World_(magazine)" title="PC World (magazine)">dlroW CP</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> eht ,ateb ni llits saw emorhC nehw ,8002 rebmetpeS 9 nO<A href="http://en.wikipedia.org/wiki/Federal_Office_for_Information_Security" title="Federal Office for Information Security">ytiruceS noitamrofnI rof eciffO laredeF namreG</A>.bew eht no ytiruces gnivorpmi ot noitubirtnoc lacinhcet s'resworb eht esiarp ,revewoh ,did yehT .erawtfos desaeler-erp fo esu eht gnidrager snoitcurtsni etairporppa edivorp dluohs srerutcafunam resworb dna "snoitacilppa esu lareneg rof deyolpme eb ton dluohs snoisrev ateb" esuaceb ,egap bew namreG s'elgooG no sknil daolnwod tnenimorp eht revo nrecnoc a gnisserpxe ,emorhC fo noitanimaxe tsrif rieht tuoba tnemetats a deussi )ISB( <SUP id="cite_ref-111" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-111"><SPAN>[</SPAN>211<SPAN>]</SPAN></A></SUP></P>
+<P>.snoitacilbup lareves ni deton neeb evah gnikcart dna noitcelloc egasu lanoitpo s'emorhC tuoba nrecnoC<SUP id="cite_ref-112" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-112"><SPAN>[</SPAN>311<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>411<SPAN>]</SPAN></A></SUP> a ,8002 rebmetpeS 2 nO <A href="http://en.wikipedia.org/wiki/CNET" title="CNET" class="mw-redirect">TENC</A>meti swen <SUP id="cite_ref-114" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-114"><SPAN>[</SPAN>511<SPAN>]</SPAN></A></SUP>.ecivres fo smret elgooG lareneg eht morf detirehni saw noitseuq ni egassap ehT .resworb emorhC eht aiv derrefsnart tnetnoc lla ot esnecil a elgooG ot tnarg ot demees hcihw ,esaeler ateb laitini eht rof ecivres fo smret eht ni egassap a ot noitnetta werd <SUP id="cite_ref-115" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-115"><SPAN>[</SPAN>611<SPAN>]</SPAN></A></SUP>.ecivreS fo smreT eht morf noitseuq ni egassap eht devomer dna ,stcudorp rehto morf deworrob saw desu egaugnal eht taht gnitats yb msicitirc siht ot dednopser elgooG ,yad emas eht nO <SUP id="cite_ref-116" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-116"><SPAN>[</SPAN>711<SPAN>]</SPAN></A></SUP>".emorhC elgooG dedaolnwod evah ohw sresu lla ot ylevitcaorter ylppa" dluow egnahc siht taht deton elgooG <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>811<SPAN>]</SPAN></A></SUP>.dellatsni si resworb eht nehw "elgooG ot stroper hsarc dna scitsitats egasu gnidnes yllacitamotua yb retteb emorhC elgooG ekam pleh" noitpo eht gnikcehc yb ni tpo sresu nehw tnes ylno era scirtem egasu taht detats ynapmoc ehT .elgooG ot kcab setacinummoc margorp eht noitamrofni tahw dna rehtehw tuoba noisufnoc dna nrecnoc tneuqesbus saw erehT <SUP id="cite_ref-118" class="reference"><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_note-118"><SPAN>[</SPAN>911<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="Reverse-engineering_issues_with_Windows">swodniW htiw seussi gnireenigne-esreveR</SPAN></H3>
+<P> ,edoc ecruos s'emorhC fo esaeler eht retfa syad wef a ,8002 rebmetpeS 11 nO<A href="http://en.wikipedia.org/wiki/Scott_Hanselman" title="Scott Hanselman">namlesnaH ttocS</A> etirovaf ruoy htiw lld.23lenrek 1PS s'atsiV gnilbmessasid yb noitamrofni siht dnif nac uoY" gniyas edoc s'emorhC ni tnemmoc a deciton <A href="http://en.wikipedia.org/wiki/Disassembler" title="Disassembler">relbmessasid</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>021<SPAN>]</SPAN></A></SUP> <A href="http://en.wikipedia.org/wiki/Ars_Technica" title="Ars Technica">acinhceT srA</A>" ,gniksa elcitra na dehsilbup <A href="http://arstechnica.com/articles/paedia/chrome-antics-did-google-reverse-engineer.ars" class="external text" rel="nofollow">?swodniW reenigne-esrever elgooG diD</A>.desu elgooG taht sIPA detnemucodnu eht fo noissucsid cilbup suoiverp ot derrefer dna atsiV gnilbmessasid deined retal elgooG "<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">tide</A>]</SPAN> <SPAN class="mw-headline" id="See_also">osla eeS</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">latrop erawtfos eerF</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">sresworb bew fo nosirapmoC</A></LI>
+<LI><A href="http://en.wikipedia.org/wiki/Internet_Explorer" title="Internet Explorer">rerolpxE tenretnI</A></LI>
+<LI><A href="http://en.wikipedia.org/wiki/Mozilla_Firefox" title="Mozilla Firefox">xoferiF allizoM</A></LI>
+<LI><A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">irafaS</A></LI>
+<LI><A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">arepO</A></LI>
+<LI><A href="http://en.wikipedia.org/wiki/Chromium_(web_browser)" title="Chromium (web browser)">muimorhC</A></LI>
+<LI><A href="http://en.wikipedia.org/wiki/SRWare_Iron" title="SRWare Iron">norI eraWRS</A></LI>
+<LI><A href="http://en.wikipedia.org/wiki/Google_Chrome_OS" title="Google Chrome OS">SO emorhC elgooG</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">tide</A>]</SPAN> <SPAN class="mw-headline" id="References">secnerefeR</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">erahS tekraM resworB</A>10-21-9002 .snoitacilppA teN ."<SPAN class="printonly"> .<A href="http://marketshare.hitslink.com/browser-market-share.aspx?qprid=0" class="external free" rel="nofollow">0=dirpq?xpsa.erahs-tekram-resworb/moc.knilstih.erahstekram//:ptth</A></SPAN><SPAN class="reference-accessdate">10-21-9002 deveirteR .</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">ateb ni snoisnetxe dna xuniL ,caM :syadiloh eht rof emorhC elgooG</A>"<SPAN class="printonly"> .<A href="http://googleblog.blogspot.com/2009/12/google-chrome-for-holidays-mac-linux.html" class="external free" rel="nofollow">lmth.xunil-cam-syadiloh-rof-emorhc-elgoog/21/9002/moc.topsgolb.golbelgoog//:ptth</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">snoisnetxE emorhC ateB poT</A>"<SPAN class="printonly"> .<A href="http://www.techpluto.com/top-google-chrome-extensions/" class="external free" rel="nofollow">/snoisnetxe-emorhc-elgoog-pot/moc.otulphcet.www//:ptth</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">trop xuniL dna edoc ecruos emorhC slievnu elgooG</A>acinhceT srA ,</LI>
+<LI id="cite_note-4"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-4">^</A></B> :morf deveirteR ".muimorhC morf edoc ecruos nepo htiw tliub si emorhC elgooG" <A href="http://dev.chromium.org/developers/how-tos/getting-started" class="external free" rel="nofollow">detrats-gnitteg/sot-woh/srepoleved/gro.muimorhc.ved//:ptth</A>.</LI>
+<LI id="cite_note-5"><B><A href="http://en.wikipedia.org/wiki/Google_Chrome#cite_ref-5">^</A></B> <I>"...sresworb rehto taht epoh desserpxe elgooG ,yadot gnifeirb sserp a gniruD"</I> :morf deveirteR ,<A href="http://arstechnica.com/open-source/news/2008/09/google-unveils-chrome-source-code-and-linux-port.ars" class="external text" rel="nofollow">trop xuniL dna edoc ecruos emorhC slievnu elgooG</A>acinhceT srA ,</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">)noitatnemucoD repoleveD muimorhC( emoH</A> ."<I>noitatnemucoD repoleveD muimorhC</I>9002 .gro.muimorhc.ved .<SPAN class="printonly"> .<A href="http://dev.chromium.org/Home" class="external free" rel="nofollow">emoH/gro.muimorhc.ved//:ptth</A></SPAN><SPAN class="reference-accessdate">50-50-9002 deveirteR .</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>"...taht os esnecil DSB evissimrep a rednu elbaliava ecruos emorhC eht edam sah elgooG"</I> :morf deveirteR ,<A href="http://arstechnica.com/open-source/news/2008/09/google-unveils-chrome-source-code-and-linux-port.ars" class="external text" rel="nofollow">trop xuniL dna edoc ecruos emorhC slievnu elgooG</A>acinhceT srA ,</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">snoitidnoC dna smreT muimorhC</A> ."<I><A href="http://en.wikipedia.org/wiki/Google_Code" title="Google Code">edoC elgooG</A></I>20-90-8002 .<SPAN class="printonly"> .<A href="http://code.google.com/chromium/terms.html" class="external free" rel="nofollow">lmth.smret/muimorhc/moc.elgoog.edoc//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">" .)11-90-8002( lieN ,retsillAcM<A href="http://weblog.infoworld.com/fatalexception/archives/2008/09/building_google.html" class="external text" rel="nofollow">kool tsrif A :emorhC elgooG gnidliuB</A> ."<I>noitpecxE lataF</I>)dlroWofnI( <SPAN class="printonly"> .<A href="http://weblog.infoworld.com/fatalexception/archives/2008/09/building_google.html" class="external free" rel="nofollow">lmth.elgoog_gnidliub/90/8002/sevihcra/noitpecxelataf/moc.dlrowofni.golbew//:ptth</A></SPAN><SPAN class="reference-accessdate">61-90-8002 deveirteR .</SPAN>"ngised eulb deudbus a fo rovaf ni sroloc elgooG eht sdehs hcihw ,ogol eht si ecnereffid tnedive ylidaer tsom ehT...secnereffid lausiv ronim yrev wef a ylno htiw ,lacitnedi yltsom si IU ehT .emorhC fo noisrev dehsilop ssel ,rewar a si muimorhC ,stseggus eman eht sA" .</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">" .)10-90-8002( duolCcM ttocS<A href="http://smccloud.livejournal.com/15488.html" class="external text" rel="nofollow">!esirpruS</A> ."<I><A href="http://en.wikipedia.org/wiki/Google_Blogoscoped" title="Google Blogoscoped">depocsogolB elgooG</A></I><SPAN class="printonly"> .<A href="http://smccloud.livejournal.com/15488.html" class="external free" rel="nofollow">lmth.88451/moc.lanruojevil.duolccms//:ptth</A></SPAN><SPAN class="reference-accessdate">10-90-8002 deveirteR .</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">" .)10-90-8002( nessneL ppilihP<A href="http://blogoscoped.com/archive/2008-09-01-n47.html" class="external text" rel="nofollow">tcejorP resworB s'elgooG ,emorhC elgooG</A>"<SPAN class="printonly"> .<A href="http://blogoscoped.com/archive/2008-09-01-n47.html" class="external free" rel="nofollow">lmth.74n-10-90-8002/evihcra/moc.depocsogolb//:ptth</A></SPAN><SPAN class="reference-accessdate">10-90-8002 deveirteR .</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">" .)10-90-8002( nessneL ppilihP<A href="http://blogoscoped.com/google-chrome/" class="external text" rel="nofollow">koob cimoc - emorhC elgooG no elgooG</A> ."<I><A href="http://en.wikipedia.org/wiki/Google_Blogoscoped" title="Google Blogoscoped">depocsogolB elgooG</A></I><SPAN class="printonly"> .<A href="http://blogoscoped.com/google-chrome/" class="external free" rel="nofollow">/emorhc-elgoog/moc.depocsogolb//:ptth</A></SPAN><SPAN class="reference-accessdate">10-90-8002 deveirteR .</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">emorhC elgooG</A> ."<I><A href="http://en.wikipedia.org/wiki/Google_Book_Search" title="Google Book Search">hcraeS kooB elgooG</A></I>10-90-8002 .<SPAN class="printonly"> .<A href="http://www.google.com/googlebooks/chrome/" class="external free" rel="nofollow">/emorhc/skoobelgoog/moc.elgoog.www//:ptth</A></SPAN><SPAN class="reference-accessdate">20-90-8002 deveirteR .</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">" .)10-90-8002( suniL ,nospU ;radnuS ,iahciP<A href="http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html" class="external text" rel="nofollow">resworb eht no ekat hserf A</A> ."<I>golB elgooG</I><SPAN class="printonly"> .<A href="http://googleblog.blogspot.com/2008/09/fresh-take-on-browser.html" class="external free" rel="nofollow">lmth.resworb-no-ekat-hserf/90/8002/moc.topsgolb.golbelgoog//:ptth</A></SPAN><SPAN class="reference-accessdate">10-90-8002 deveirteR .</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">emorhC elgooG ...fi ton nehw saw tI</A>8002 rebmetpeS ."<SPAN class="printonly"> .<A href="http://www.doeswhat.com/2008/09/02/it-was-when-not-if-google-chrome/" class="external free" rel="nofollow">/emorhc-elgoog-fi-ton-nehw-saw-ti/20/90/8002/moc.tahwseod.www//:ptth</A></SPAN><SPAN class="reference-accessdate">20-90-8002 deveirteR .</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">trela golb-evil dna ,tohsneercs tsriF :etadpu emorhC elgooG</A> ."<A href="http://en.wikipedia.org/wiki/CNet" title="CNet" class="mw-redirect">teNC</A>10-90-8002 .<SPAN class="printonly"> .<A href="http://news.cnet.com/8301-17939_109-10030025-2.html" class="external free" rel="nofollow">lmth.2-52003001-901_93971-1038/moc.tenc.swen//:ptth</A></SPAN><SPAN class="reference-accessdate">20-90-8002 deveirteR .</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">resworb bew emorhC sehcnual elgooG</A>8002 ,2 rebmetpeS .sserP naidanaC ehT ."<SPAN class="printonly"> .<A href="http://www.cbc.ca/technology/story/2008/09/01/google-browser.html" class="external free" rel="nofollow">lmth.resworb-elgoog/10/90/8002/yrots/ygolonhcet/ac.cbc.www//:ptth</A></SPAN><SPAN class="reference-accessdate">20-90-8002 deveirteR .</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">?caM rof emorhC ...elgooG no emoC</A>8002 rebmevoN ."<SPAN class="printonly"> .<A href="http://www.doeswhat.com/2008/11/22/come-on-google-chrome-for-mac/" class="external free" rel="nofollow">/cam-rof-emorhc-elgoog-no-emoc/22/11/8002/moc.tahwseod.www//:ptth</A></SPAN><SPAN class="reference-accessdate">22-11-8002 deveirteR .</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">" .)30-10-9002( gnagfloW ,reneurG<A href="http://www.tgdaily.com/content/view/40575/113/" class="external text" rel="nofollow">niaga erahs tekram &#37;1 sessorc emorhC elgooG</A>yliaD GT :)LI( ogacihC ."<SPAN class="printonly"> .<A href="http://www.tgdaily.com/content/view/40575/113/" class="external free" rel="nofollow">/311/57504/weiv/tnetnoc/moc.yliadgt.www//:ptth</A></SPAN><SPAN class="reference-accessdate">30-10-9002 deveirteR .</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">xuniL rof snoitcurtsni dliuB</A>8002 ."<SPAN class="printonly"> .<A href="http://code.google.com/p/chromium/wiki/LinuxBuildInstructions" class="external free" rel="nofollow">snoitcurtsnIdliuBxuniL/ikiw/muimorhc/p/moc.elgoog.edoc//:ptth</A></SPAN><SPAN class="reference-accessdate">71-21-8002 deveirteR .</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">" .)8002 rebmevoN 21( nehpetS ,dnalknahS<A href="http://news.cnet.com/8301-17939_109-10094939-2.html" class="external text" rel="nofollow">yledurc ,xuniL no skrow won emorhC s'elgooG</A>"<SPAN class="printonly"> .<A href="http://news.cnet.com/8301-17939_109-10094939-2.html" class="external free" rel="nofollow">lmth.2-93949001-901_93971-1038/moc.tenc.swen//:ptth</A></SPAN><SPAN class="reference-accessdate">71-21-8002 deveirteR .</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">" .)8002 rebmeceD 21( neevarP ,liyidohtarbmirA<A href="http://www.j4v4m4n.in/2008/12/12/google-chrome-on-gnulinux/" class="external text" rel="nofollow">xuniL/UNG no emorhC elgooG</A>"<SPAN class="printonly"> .<A href="http://www.j4v4m4n.in/2008/12/12/google-chrome-on-gnulinux/" class="external free" rel="nofollow">/xunilung-no-emorhc-elgoog/21/21/8002/ni.n4m4v4j.www//:ptth</A></SPAN><SPAN class="reference-accessdate">71-21-8002 deveirteR .</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">" .)90-10-9002( nehpetS ,dnalknahS<A href="http://news.cnet.com/chrome-gets-mac-deadline-extensions-foundation/" class="external text" rel="nofollow">noitadnuof snoisnetxe ,enildaed caM steg emorhC</A> ."<A href="http://en.wikipedia.org/wiki/CNET" title="CNET" class="mw-redirect">TENC</A><SPAN class="printonly"> .<A href="http://news.cnet.com/chrome-gets-mac-deadline-extensions-foundation/" class="external free" rel="nofollow">/noitadnuof-snoisnetxe-enildaed-cam-steg-emorhc/moc.tenc.swen//:ptth</A></SPAN><SPAN class="reference-accessdate">31-10-9002 deveirteR .</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">)selif bed.( sdliub xuniL muimorhC</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">slennahC esaeleR sseccA ylraE</A>"<SPAN class="printonly"> .<A href="http://dev.chromium.org/getting-involved/dev-channel" class="external free" rel="nofollow">lennahc-ved/devlovni-gnitteg/gro.muimorhc.ved//:ptth</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">elbaliava sdliub xuniL dna caM :regnaD</A>"<SPAN class="printonly"> .<A href="http://blog.chromium.org/2009/06/danger-mac-and-linux-builds-available.html" class="external free" rel="nofollow">lmth.elbaliava-sdliub-xunil-dna-cam-regnad/60/9002/gro.muimorhc.golb//:ptth</A></SPAN><SPAN class="reference-accessdate">90-60-9002 deveirteR .</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">KU dlrowcaM - ?samtsirhC yb resworb caM rof emorhC</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">)yeldarB ynoT - dlroW CP( caM rof ateB resworB beW emorhC fo esaeleR sraeN elgooG</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">lmth.cam_rof_ateb_resworb_bew_emorhc_fo_esaeler_sraen_elgoog/663381/elcitra/retnecssenisub/moc.dlrowcp.www//:ptth</A></SPAN><SPAN class="reference-accessdate">03-11-9002 deveirteR .</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">swodniW dna ,caM ,xuniL :etadpU ateB</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">resworB emorhC elgooG ni esuer edoC</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> .reilrae dna 3.0 snoisrev rednu 87 derocs ylsuoiverp emorhC <SPAN class="citation news">" .)20-90-8002( nosirraH ,namffoH<A href="http://news.cnet.com/8301-17939_109-10030962-2.html" class="external text" rel="nofollow">tset 3dicA ni xoferiF ,EI spot emorhC</A>sweN TENC ."<SPAN class="printonly"> .<A href="http://news.cnet.com/8301-17939_109-10030962-2.html" class="external free" rel="nofollow">lmth.2-26903001-901_93971-1038/moc.tenc.swen//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">tenc - tset 3dicA ni xoferiF ,EI spot emorhC</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">611 tnemmoc - emorhc no sliaf 3 tset dicA - 132 eussI :edoC elgooG</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">531 tnemmoc - emorhc no sliaf 3 tset dicA - 132 eussI :edoC elgooG</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">" .)70-70-9002( radnuS ,iahciP<A href="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html" class="external text" rel="nofollow">SO emorhC elgooG eht gnicudortnI :golB elgooG laiciffO</A> ."<A href="http://en.wikipedia.org/wiki/Google" title="Google">golbelgooG</A>.<A href="http://en.wikipedia.org/wiki/Blogspot.com" title="Blogspot.com" class="mw-redirect">moc.topsgolb</A><SPAN class="printonly"> .<A href="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html" class="external free" rel="nofollow">lmth.so-emorhc-elgoog-gnicudortni/70/9002/moc.topsgolb.golbelgoog//:ptth</A></SPAN><SPAN class="reference-accessdate">70-80-9002 deveirteR .</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">golB emorhC elgooG - sresu lla rof emorhC elgooG reideepS A</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">" .)51-90-9002( ynohtnA ,egrofaL<A href="http://googleblog.blogspot.com/2009/09/google-chrome-after-year-sporting-new.html" class="external text" rel="nofollow">esaeler elbats wen a gnitropS :raey a retfa emorhC elgooG</A> ."<A href="http://en.wikipedia.org/wiki/Google" title="Google">golbelgooG</A>.<A href="http://en.wikipedia.org/wiki/Blogspot.com" title="Blogspot.com" class="mw-redirect">moc.topsgolb</A><SPAN class="printonly"> .<A href="http://googleblog.blogspot.com/2009/09/google-chrome-after-year-sporting-new.html" class="external free" rel="nofollow">lmth.wen-gnitrops-raey-retfa-emorhc-elgoog/90/9002/moc.topsgolb.golbelgoog//:ptth</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>oediv 5 LMTH troppus ot emorhC elgooG</I></A>82-50-9002 ,roliaStfoS ,<SPAN class="printonly"> ,<A href="http://www.softsailor.com/news/3787-3787.html" class="external free" rel="nofollow">lmth.7873-7873/swen/moc.roliastfos.www//:ptth</A></SPAN><SPAN class="reference-accessdate">11-01-9002 deveirter ,</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"> ,)82-50-9002( dnalknahS nehpetS<A href="http://news.cnet.com/8301-17939_109-10250958-2.html" class="external text" rel="nofollow"><I>troppus oediv LMTH steg emorhC elgooG</I></A>swen tenc ,<SPAN class="printonly"> ,<A href="http://news.cnet.com/8301-17939_109-10250958-2.html" class="external free" rel="nofollow">lmth.2-85905201-901_93971-1038/moc.tenc.swen//:ptth</A></SPAN><SPAN class="reference-accessdate">11-01-9002 deveirter ,</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"> ,)92-70-9002( saoB kraM<A href="http://html5doctor.com/native-audio-in-the-browser/" class="external text" rel="nofollow"><I>resworb eht ni oiduA evitaN</I></A>rotcod 5 lmth ,<SPAN class="printonly"> ,<A href="http://html5doctor.com/native-audio-in-the-browser/" class="external free" rel="nofollow">/resworb-eht-ni-oidua-evitan/moc.rotcod5lmth//:ptth</A></SPAN><SPAN class="reference-accessdate">11-01-9002 deveirter ,</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"> ,)22-90-9002( nosivaD reteP<A href="http://www.legendscrolls.co.uk/webstandards/googlechrome" class="external text" rel="nofollow"><I>emorhC elgooG - segakcaP dnA sresworB beW</I></A>sllorcS dnegeL ,<SPAN class="printonly"> ,<A href="http://www.legendscrolls.co.uk/webstandards/googlechrome" class="external free" rel="nofollow">emorhcelgoog/sdradnatsbew/ku.oc.sllorcsdnegel.www//:ptth</A></SPAN><SPAN class="reference-accessdate">11-01-9002 deveirter ,</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">/seton-esaeler/lennahc-ved/devlovni-gnitteg/gro.muimorhc.ved//:ptth</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;">)hsilgnE(</SPAN><SPAN class="citation web">"<A href="http://code.google.com/p/v8/source/browse/trunk/ChangeLog" class="external text" rel="nofollow">8v - goLegnahC</A>"<SPAN class="printonly"> .<A href="http://code.google.com/p/v8/source/browse/trunk/ChangeLog" class="external free" rel="nofollow">goLegnahC/knurt/esworb/ecruos/8v/p/moc.elgoog.edoc//:ptth</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">serutaeF euqinU s’emorhC elgooG</A>.stohs-neercs htiw ,segnahc ecafretni resu elbisiv tsom eht ,</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">hceT ssenisuB - irafaS ,EI ,xoferiF staeb emorhC elgooG :tset deepS</A> ,<A href="http://en.wikipedia.org/wiki/CNET_News" title="CNET News" class="mw-redirect">sweN TENC</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">sresworB - eroM dna ,2 emorhC ,4 irafaS :stseT deepS rekcahefiL</A> ,<A href="http://en.wikipedia.org/wiki/Lifehacker" title="Lifehacker">rekcahefiL</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">emorhC elgooG fo serutaef euqinU 21</A>ekortShceT ,</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">sweN TENC ,rab sserdda xoferiF eht fo erutuf ehT</A> .weivretni TENC a ni rab hcraes dna rab sserdda egrem ot snalp secnuonna allizoM ,<I>".devloser eb ot tey sah egrem lliw enigne hcraes beW a morf dna yrotsih gnisworb ruoy morf atad eht woH .eno otni egrem lliw sdleif yrtne owt eht ,dias eh ,yletamitlU"</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">" .)50-90-8002( craM ,gnuhC<A href="http://blog.marcchung.com/2008/09/chromes-process-model-explained.html" class="external text" rel="nofollow">denialpxe ledom ssecorp-semorhc</A>"<SPAN class="printonly"> .<A href="http://blog.marcchung.com/2008/09/chromes-process-model-explained.html" class="external free" rel="nofollow">lmth.denialpxe-ledom-ssecorp-semorhc/90/8002/moc.gnuhccram.golb//:ptth</A></SPAN><SPAN class="reference-accessdate">01-90-8002 deveirteR .</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">" .)10-90-8002( elgooG<A href="http://www.gamesforthebrain.com/google-chrome/26" class="external text" rel="nofollow">emorhC elgooG</A>"<SPAN class="printonly"> .<A href="http://www.gamesforthebrain.com/google-chrome/26" class="external free" rel="nofollow">62/emorhc-elgoog/moc.niarbehtrofsemag.www//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">knil daed</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">" .maeT emorhC elgooG ehT dna ,sieR selrahC ,noskcaJ nilloC ;madA ,htraB<A href="http://crypto.stanford.edu/websec/chromium/chromium-security-architecture.pdf" class="external text" rel="nofollow">resworB muimorhC eht fo erutcetihcrA ytiruceS ehT</A>yrotarobaL ytiruceS drofnatS .)FDP( "<SPAN class="printonly"> .<A href="http://crypto.stanford.edu/websec/chromium/chromium-security-architecture.pdf" class="external free" rel="nofollow">fdp.erutcetihcra-ytiruces-muimorhc/muimorhc/cesbew/ude.drofnats.otpyrc//:ptth</A></SPAN><SPAN class="reference-accessdate">11-90-8002 deveirteR .</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">)ecafretnI gnimmargorP noitacilppA nigulP epacsteN( IPAPN stroppuS emorhC</A>moc.emorhceraeW ."<SPAN class="printonly"> .<A href="http://wearechrome.com/index.php?topic=15.0" class="external free" rel="nofollow">0.51=cipot?php.xedni/moc.emorhceraew//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">srepoleved bew rof QAF emorhC elgooG</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">emorhC elgooG dna avaJ</A>moc.avaJ ."<SPAN class="printonly"> .<A href="http://java.com/en/download/chrome.jsp" class="external free" rel="nofollow">psj.emorhc/daolnwod/ne/moc.avaj//:ptth</A></SPAN><SPAN class="reference-accessdate">11-21-9002 deveirteR .</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">edoM otingocnI :serutaeF emorhC elgooG erolpxE</A>20-90-8002 ."<SPAN class="printonly"> .<A href="http://www.google.com/support/chrome/bin/answer.py?answer=95464&hl=en" class="external free" rel="nofollow">ne=lh&amp;46459=rewsna?yp.rewsna/nib/emorhc/troppus/moc.elgoog.www//:ptth</A></SPAN><SPAN class="reference-accessdate">40-90-8002 deveirteR .</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">" .)30-90-8002( )moc.sregniFlivE.www - ytinummoC sregniFlivE( gnaraN ihsiR<A href="http://evilfingers.com/advisory/Google_Chrome_Browser_0.2.149.27_in_chrome_dll.php" class="external text" rel="nofollow">ytilibarenluV SoD knil suoicilam 72.941.2.0 resworB emorhC elgooG</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">php.lld_emorhc_ni_72.941.2.0_resworB_emorhC_elgooG/yrosivda/moc.sregniflive//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">.niaga dna niagA .emorhC hsarc ot woH</A>30-90-8002 .moc.yliaDGT ."<SPAN class="printonly"> .<A href="http://www.tgdaily.com/content/view/39170/108/" class="external free" rel="nofollow">/801/07193/weiv/tnetnoc/moc.yliadgt.www//:ptth</A></SPAN><SPAN class="reference-accessdate">60-90-8002 deveirteR .</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">92.941.2.0 :esaeler ateB</A>80-90-8002 ."<SPAN class="printonly"> .<A href="http://googlechromereleases.blogspot.com/2008/09/beta-release-0214929.html" class="external free" rel="nofollow">lmth.9294120-esaeler-ateb/90/8002/moc.topsgolb.sesaeleremorhcelgoog//:ptth</A></SPAN><SPAN class="reference-accessdate">90-90-8002 deveirteR .</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">eloh resworb hsuh-hsuh sgulp etadpu emorhC</A>42-60-9002 ."<SPAN class="printonly"> .<A href="http://www.theregister.co.uk/2009/06/24/chrome_security_update/" class="external free" rel="nofollow">/etadpu_ytiruces_emorhc/42/60/9002/ku.oc.retsigereht.www//:ptth</A></SPAN><SPAN class="reference-accessdate">70-70-9002 deveirteR .</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">etius kramhcneB 8V</A> ."<I>edoc elgooG</I><SPAN class="printonly"> .<A href="http://code.google.com/apis/v8/run.html" class="external free" rel="nofollow">lmth.nur/8v/sipa/moc.elgoog.edoc//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">" .)20-90-8002( sniwdooG trepuR<A href="http://community.zdnet.co.uk/blog/0,1000000567,10009139o-2000331777b,00.htm" class="external text" rel="nofollow">.wow :yrammuS .skramhcneb tsrif - emorhC elgooG</A>"<SPAN class="printonly"> .<A href="http://community.zdnet.co.uk/blog/0,1000000567,10009139o-2000331777b,00.htm" class="external free" rel="nofollow">mth.00,b7771330002-o93190001,7650000001,0/golb/ku.oc.tendz.ytinummoc//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">skramhcneB tpircsavaJ emorhC elgooG</A>20-90-8002 ."<SPAN class="printonly"> .<A href="http://jrm.cc/articles/717-google-chrome-javascript-benchmarks" class="external free" rel="nofollow">skramhcneb-tpircsavaj-emorhc-elgoog-717/selcitra/cc.mrj//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">" .)20-90-8002( sehguH-yelsgniK nairdA<A href="http://blogs.zdnet.com/hardware/?p=2507" class="external text" rel="nofollow">0.3 xoferiF naht retsaf ... tsaf ylenasni si emorhC elgooG</A>"<SPAN class="printonly"> .<A href="http://blogs.zdnet.com/hardware/?p=2507" class="external free" rel="nofollow">7052=p?/erawdrah/moc.tendz.sgolb//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">" .)20-90-8002( dnalknahS nehpetS<A href="http://news.cnet.com/8301-1001_3-10030888-92.html" class="external text" rel="nofollow">emorhC elgooG :tset deepS</A> ."<I>hceT ssenisuB TENC</I><SPAN class="printonly"> .<A href="http://news.cnet.com/8301-1001_3-10030888-92.html" class="external free" rel="nofollow">lmth.29-88803001-3_1001-1038/moc.tenc.swen//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">erom dna skramhcneB :emorhC</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">7 ,8 rerolpxE tenretnI .sv 6.9 ,01 arepO .sv emorhC elgooG .sv 3 xoferiF .sv 4 irafaS</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">hceT ssenisuB - tset deeps resworb s'elgooG sretnuoc xoferiF</A> ,<A href="http://en.wikipedia.org/wiki/CNET_News" title="CNET News" class="mw-redirect">sweN TENC</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">nadnerB ,hciE</A>" .)30-90-8002( <A href="http://weblogs.mozillazine.org/roadmap/archives/2008/09/tracemonkey_update.html" class="external text" rel="nofollow">etadpU yeknoMecarT</A>"<SPAN class="printonly"> .<A href="http://weblogs.mozillazine.org/roadmap/archives/2008/09/tracemonkey_update.html" class="external free" rel="nofollow">lmth.etadpu_yeknomecart/90/8002/sevihcra/pamdaor/gro.enizallizom.sgolbew//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">sweN - retsaf hcton rehtona ateb emorhC drihT</A>UA redliuB ,</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">nhoJ ,giseR</A>" .)30-90-8002( <A href="http://ejohn.org/blog/javascript-performance-rundown/" class="external text" rel="nofollow">nwodnuR ecnamrofreP tpircSavaJ</A>"<SPAN class="printonly"> .<A href="http://ejohn.org/blog/javascript-performance-rundown/" class="external free" rel="nofollow">/nwodnur-ecnamrofrep-tpircsavaj/golb/gro.nhoje//:ptth</A></SPAN><SPAN class="reference-accessdate">90-60-8002 deveirteR .</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">emertxE hsiFlerriuqS gnicudortnI :golb tiKbeW</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">!dednal sah emertxE hsiFlerriuqS</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">sweN - emertxE hsiflerriuqS rof ,emorhC ,edisa petS</A>UA redliuB ,</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">teY enignE tpircSavaJ tsetsaF :emertxE hsiFlerriuqS</A>gro.enitas ,</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">" .)30-90-8002( allarG notserP<A href="http://blogs.computerworld.com/three_hidden_chrome_features_youll_love" class="external text" rel="nofollow">evol ll'uoy serutaef emorhC neddih eerhT</A>"<SPAN class="printonly"> .<A href="http://blogs.computerworld.com/three_hidden_chrome_features_youll_love" class="external free" rel="nofollow">evol_lluoy_serutaef_emorhc_neddih_eerht/moc.dlrowretupmoc.sgolb//:ptth</A></SPAN><SPAN class="reference-accessdate">61-90-8002 deveirteR .</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">" .)11-90-8002( nsieR eilrahC<A href="http://blog.chromium.org/2008/09/multi-process-architecture.html" class="external text" rel="nofollow">erutcetihcrA ssecorp-itluM</A>"<SPAN class="printonly"> .<A href="http://blog.chromium.org/2008/09/multi-process-architecture.html" class="external free" rel="nofollow">lmth.erutcetihcra-ssecorp-itlum/90/8002/gro.muimorhc.golb//:ptth</A></SPAN><SPAN class="reference-accessdate">21-90-8002 deveirteR .</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">" .)11-30-8002( relgieZ ydnA<A href="http://blogs.msdn.com/ie/archive/2008/03/11/ie8-and-loosely-coupled-ie-lcie.aspx" class="external text" rel="nofollow">)EICL( EI delpuoC-ylesooL dna 8EI</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">xpsa.eicl-ei-delpuoc-ylesool-dna-8ei/11/30/8002/evihcra/ei/moc.ndsm.sgolb//:ptth</A></SPAN><SPAN class="reference-accessdate">21-90-8002 deveirteR .</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">" .)30-90-8002( noitatnemucoD repoleveD muimorhC<A href="http://dev.chromium.org/developers/design-documents/process-models" class="external text" rel="nofollow">sledoM ssecorP</A>"<SPAN class="printonly"> .<A href="http://dev.chromium.org/developers/design-documents/process-models" class="external free" rel="nofollow">sledom-ssecorp/stnemucod-ngised/srepoleved/gro.muimorhc.ved//:ptth</A></SPAN><SPAN class="reference-accessdate">21-90-8002 deveirteR .</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">" .)12-90-8002( elgooG<A href="http://google.com/googlebooks/chrome/index.html" class="external text" rel="nofollow">koob emorhC elgooG</A>"<SPAN class="printonly"> .<A href="http://google.com/googlebooks/chrome/index.html" class="external free" rel="nofollow">lmth.xedni/emorhc/skoobelgoog/moc.elgoog//:ptth</A></SPAN><SPAN class="reference-accessdate">12-90-8002 deveirteR .</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">golB elgooG laiciffO - esaeler elbats wen a gnitropS :raey a retfa emorhC elgooG</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">rekcahefiL - emorhC elgooG - rablooT s'emorhC elgooG ot nottuB kramkooB a ddA</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">D3 htiw emorhC elgooG</A>9002 ,1 lirpA .elgooG ."<SPAN class="printonly"> .<A href="http://www.google.com/intl/en/landing/chrome/cadie/" class="external free" rel="nofollow">/eidac/emorhc/gnidnal/ne/ltni/moc.elgoog.www//:ptth</A></SPAN><SPAN class="reference-accessdate">62-50-9002 deveirteR .</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>".txen ot teg lliw ew sgniht eht fo eno si tI" .yadseuT ereh tneve hcnual emorhC eht ta dias ,tnemeganam tcudorp fo tnediserp eciv elgooG a ,iahciP radnuS ,ecafretni gnimmargorp noitacilppa ro ",IPA noisnetxe na nalp yletinifed ew tub ,yadot ateb eht ni taht evah t'nod eW" .retal tub ,tey toN :snoisnetxe emorhC elgooG <A href="http://news.cnet.com/8301-17939_109-10031764-2.html" class="external text" rel="nofollow">retal tub ,tey toN :snoisnetxe emorhC elgooG</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">edoC elgooG - metsys-nodda na evah ton seod emorhC :tsilhsiW</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">" .namdooB noraA<A href="http://blog.chromium.org/2009/05/extensions-at-google-io.html" class="external text" rel="nofollow">O/I elgooG ta snoisnetxE</A>"<SPAN class="printonly"> .<A href="http://blog.chromium.org/2009/05/extensions-at-google-io.html" class="external free" rel="nofollow">lmth.oi-elgoog-ta-snoisnetxe/50/9002/gro.muimorhc.golb//:ptth</A></SPAN><SPAN class="reference-accessdate">72-50-9002 deveirteR .</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">ffO-ekaT rof ydaeR gnitteG ,yawnuR eht nO :sutatS snoisnetxE</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">eniL hsiniF eht ot resolC petS enO :snoisnetxE</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">!snoisnetxe 003 revo htiw ,dehcnual ateb snoisnetxE</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">emorhC elgooG rof semehT tsitrA :resworb ruoy ot roloc fo hsalps A</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">yrellaG semehT emorhC elgooG</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">emeht resworb egnahC :sgnittes cisaB</A>pleH emorhC elgooG </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">sredivorp ecivres dna emorhC elgooG/muimorhC neewteb snoitacinummoC</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">egapbew norI eraWRS</A>"<SPAN class="printonly"> .<A href="http://www.srware.net/en/software_srware_iron.php" class="external free" rel="nofollow">php.nori_erawrs_erawtfos/ne/ten.erawrs.www//:ptth</A></SPAN><SPAN class="reference-accessdate">21-01-8002 deveirteR .</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">?sdroWdA ro ciffart cinagrO :rerrefer elgooG ni =zlr&amp;</A>"<SPAN class="printonly"> .<A href="http://foliovision.com/2008/12/09/adwords-ppc-organic-rlz/" class="external free" rel="nofollow">/zlr-cinagro-cpp-sdrowda/90/21/8002/moc.noisivoilof//:ptth</A></SPAN><SPAN class="reference-accessdate">72-20-9002 deveirteR .</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>".desu tsrif erew serutaef niatrec" nehw morf pmatsemit a dna ,pmatsemit llatsni sti ,morf dedaolnwod saw emorhC erehw no noitamrofni ,ot detimil ton tub ,niatnoc ot nwonk si tI </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">pleH emorhC elgooG - ZLR dna ,sDI euqinu ,ycavirP :&nbsp;ycavirP lareneG</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">snrecnoC ycavirP emorhC emoS ot stcaeR elgooG</A>"<SPAN class="printonly"> .<A href="http://blogoscoped.com/archive/2008-09-09-n68.html" class="external free" rel="nofollow">lmth.86n-90-90-8002/evihcra/moc.depocsogolb//:ptth</A></SPAN><SPAN class="reference-accessdate">42-90-8002 deveirteR .</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">" .HbmG tfosslebA ,slebA nevS .rD<A href="http://abelssoft.net/unchrome.php" class="external text" rel="nofollow">emorhC elgooG morf DI euqinu eht devomer emorhCnU - emorhC elgooG ezimynonA - emorhCnU</A>ten.tfosslebA ."<SPAN class="printonly"> .<A href="http://abelssoft.net/unchrome.php" class="external free" rel="nofollow">php.emorhcnu/ten.tfossleba//:ptth</A></SPAN><SPAN class="reference-accessdate">70-80-9002 deveirteR .</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">" .)80-10-9002( nosraL kraM<A href="http://blog.chromium.org/2009/01/google-chrome-release-channels.html" class="external text" rel="nofollow">slennahC esaeleR emorhC elgooG</A>"<SPAN class="printonly"> .<A href="http://blog.chromium.org/2009/01/google-chrome-release-channels.html" class="external free" rel="nofollow">lmth.slennahc-esaeler-emorhc-elgoog/10/9002/gro.muimorhc.golb//:ptth</A></SPAN><SPAN class="reference-accessdate">90-10-9002 deveirteR .</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">" .)80-10-9002( nosraL kraM<A href="http://googlechromereleases.blogspot.com/2009/01/dev-update-new-webkit-version-new.html" class="external text" rel="nofollow">lennahc veD wen a dna ,serutaef wen ,noisrev tiKbeW weN :etadpu veD</A>"<SPAN class="printonly"> .<A href="http://googlechromereleases.blogspot.com/2009/01/dev-update-new-webkit-version-new.html" class="external free" rel="nofollow">lmth.wen-noisrev-tikbew-wen-etadpu-ved/10/9002/moc.topsgolb.sesaeleremorhcelgoog//:ptth</A></SPAN><SPAN class="reference-accessdate">90-10-9002 deveirteR .</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">slortnoC etadpU elgooG gnicnuonna tsop golb elgooG</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">egap daolnwod enoladnats</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">emorhC elgooG rof rellatsnI enilffO enoladnatS</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">"etadpU erawtfoS elgooG ni setadpu gniganaM" egap pleH elgooG</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">)ooT refaS dna( retsaF si rellamS :golB muimorhC</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">" .)20-90-8002( wehttaM ,erooM<A href="http://www.telegraph.co.uk/connected/main.jhtml?xml=/connected/2008/09/03/dlchrome103.xml" class="external text" rel="nofollow">sweiver fo weiveR :resworb emorhC elgooG</A> ."<I>hpargeleT yliaD</I>)puorG aideM hpargeleT( <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">lmx.301emorhcld/30/90/8002/detcennoc/=lmx?lmthj.niam/detcennoc/ku.oc.hpargelet.www//:ptth</A></SPAN><SPAN class="reference-accessdate">40-90-8002 deveirteR .</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">resworb emorhC htiw enil tcudorp sehsilop elgooG :sserP detaicossA ehT</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">knil daed</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">eroM &amp; emorhC no sthguohT ,golB s'nhoJ</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">su llik ot gniyrt ton s'elgooG :allizoM :sweN :orP CP</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">" .)30-90-8002( kciN ,itaideM<A href="http://www.pcworld.com/article/150579/google_chrome_web_browser.html" class="external text" rel="nofollow">resworB beW emorhC elgooG</A> ."<A href="http://en.wikipedia.org/wiki/PC_World_(magazine)" title="PC World (magazine)">dlroW CP</A><SPAN class="printonly"> .<A href="http://www.pcworld.com/article/150579/google_chrome_web_browser.html" class="external free" rel="nofollow">lmth.resworb_bew_emorhc_elgoog/975051/elcitra/moc.dlrowcp.www//:ptth</A></SPAN><SPAN class="reference-accessdate">70-90-8002 deveirteR .</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">" .)90-90-8002( saihttaM ,renträG<A href="http://www.bsi.de/presse/kurzmeldung/090908chrome.htm" class="external text" rel="nofollow">emorhC-elgooG uz noitisoP-ISB</A> .)namreG ni( "<I>ytiruceS noitamrofnI rof eciffO laredeF</I>)ytiruceS noitamrofnI rof eciffO laredeF( <SPAN class="printonly"> .<A href="http://www.bsi.de/presse/kurzmeldung/090908chrome.htm" class="external free" rel="nofollow">mth.emorhc809090/gnudlemzruk/esserp/ed.isb.www//:ptth</A></SPAN><SPAN class="reference-accessdate">90-90-8002 deveirteR .</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">" .esilE ,namrekcA<A href="http://www.mercurynews.com/breakingnews/ci_10510989" class="external text" rel="nofollow">setacovda ycavirp ,srepoleved smrala erutaef gnikcart s'resworb elgooG</A>sweN yrucreM ."<SPAN class="printonly"> .<A href="http://www.mercurynews.com/breakingnews/ci_10510989" class="external free" rel="nofollow">98901501_ic/swengnikaerb/moc.swenyrucrem.www//:ptth</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">xob s'arodnaP eb dluoc xobinmO s'elgooG</A>30-90-8002 ."<SPAN class="printonly"> .<A href="http://news.cnet.com/8301-13860_3-10031661-56.html?tag=txt" class="external free" rel="nofollow">txt=gat?lmth.65-16613001-3_06831-1038/moc.tenc.swen//:ptth</A></SPAN><SPAN class="reference-accessdate">40-90-8002 deveirteR .</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">tnirp enif s'emorhC daer ot erus eB</A> ."<A href="http://en.wikipedia.org/wiki/CNET" title="CNET" class="mw-redirect">TENC</A><SPAN class="printonly"> .<A href="http://news.cnet.com/8301-17939_109-10030522-2.html" class="external free" rel="nofollow">lmth.2-22503001-901_93971-1038/moc.tenc.swen//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirteR .</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">ecivreS fo smreT elgooG</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">)hsilgnE( ecivreS fo smreT emorhC elgooG</A>"<SPAN class="printonly"> .<A href="http://www.google.com/chrome/eula.html?hl=en" class="external free" rel="nofollow">ne=lh?lmth.alue/emorhc/moc.elgoog.www//:ptth</A></SPAN><SPAN class="reference-accessdate">40-90-8002 deveirteR .</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>snoitcejbO retfA tnemeergA esneciL emorhC sdnemA elgooG</I></A> ,<A href="http://en.wikipedia.org/wiki/PC_World_(magazine)" title="PC World (magazine)">dlroW CP</A>30-90-8002 ,<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">lmth.snoitcejbo_retfa_tnemeerga_esnecil_emorhc_sdnema_elgoog/736051/elcitra/retnecssenisub/moc.dlrowcp.www//:ptth</A></SPAN><SPAN class="reference-accessdate">30-90-8002 deveirter ,</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">ecitoN ycavirP emorhC elgooG</A>"<SPAN class="printonly"> .<A href="http://www.google.com/chrome/intl/en/privacy.html" class="external free" rel="nofollow">lmth.ycavirp/ne/ltni/emorhc/moc.elgoog.www//:ptth</A></SPAN><SPAN class="reference-accessdate">72-01-9002 deveirteR .</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">" .ttocS ,namlesnaH<A href="http://www.hanselman.com/blog/TheWeeklySourceCode33MicrosoftOpenSourceInsideGoogleChrome.aspx" class="external text" rel="nofollow">33 edoC ecruoS ylkeeW ehT</A>"<SPAN class="printonly"> .<A href="http://www.hanselman.com/blog/TheWeeklySourceCode33MicrosoftOpenSourceInsideGoogleChrome.aspx" class="external free" rel="nofollow">xpsa.emorhCelgooGedisnIecruoSnepOtfosorciM33edoCecruoSylkeeWehT/golb/moc.namlesnah.www//:ptth</A></SPAN><SPAN class="reference-accessdate">70-10-9002 deveirteR .</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">" .)91-90-8002( dnalknahS nehpetS<A href="http://news.cnet.com/8301-1001_3-10046395-92.html" class="external text" rel="nofollow">erawtfos atsiV gnilbmessasid seined elgooG</A> ."<A href="http://en.wikipedia.org/wiki/CNET_News" title="CNET News" class="mw-redirect">sweN TENC</A><SPAN class="printonly"> .<A href="http://news.cnet.com/8301-1001_3-10046395-92.html" class="external free" rel="nofollow">lmth.29-59364001-3_1001-1038/moc.tenc.swen//:ptth</A></SPAN><SPAN class="reference-accessdate">90-20-9002 deveirteR .</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">tide</A>]</SPAN> <SPAN class="mw-headline" id="External_links">sknil lanretxE</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">swenikiW</A> :swen detaler sah <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">emorhC debbud ,resworb bew sehcnual elgooG</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">snommoC aidemikiW</A> :ot detaler aidem sah <B><I><A href="http://commons.wikimedia.org/wiki/Category:Google_Chrome" class="extiw" title="commons:Category:Google Chrome">emorhC elgooG</A> </I></B></TD>
+</TR>
+</TBODY></TABLE>
+<UL>
+<LI><A href="http://www.google.com/chrome" class="external text" rel="nofollow">etis daolnwod dna egapemoH emorhC elgooG</A></LI>
+<LI><A href="http://www.google.com/chrome/intl/en/features.html" class="external text" rel="nofollow">tsiL erutaeF emorhC elgooG</A></LI>
+<LI><A href="http://code.google.com/p/chromium/" class="external text" rel="nofollow">egap tcejorp muimorhC</A>edoC elgooG ta </LI>
+<LI><A href="http://blog.chromium.org/" class="external text" rel="nofollow">golb muimorhC ehT</A>elgooG morf </LI>
+<LI><A href="http://www.google.com/googlebooks/chrome/" class="external text" rel="nofollow">kooB cimoC emorhC elgooG</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);">wohs</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">.cnI elgooG</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>OEC/namriahC</B> :<A href="http://en.wikipedia.org/wiki/Eric_E._Schmidt" title="Eric E. Schmidt">tdimhcS .E cirE</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B>rednuoF-oC/tnediserP ygolonhceT/rotceriD</B> :<A href="http://en.wikipedia.org/wiki/Sergey_Brin" title="Sergey Brin">nirB yegreS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B>rednuoF-oC/tnediserP stcudorP/rotceriD</B> :<A href="http://en.wikipedia.org/wiki/Larry_Page" title="Larry Page">egaP yrraL</A><BR>
+<B>srotceriD rehtO</B> :<A href="http://en.wikipedia.org/wiki/John_Doerr" title="John Doerr">rreoD nhoJ</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/John_L._Hennessy" title="John L. Hennessy">yssenneH .L nhoJ</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Arthur_D._Levinson" title="Arthur D. Levinson">nosniveL .D ruhtrA</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Ann_Mather" title="Ann Mather">rehtaM nnA</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Paul_Otellini" title="Paul Otellini">inilletO luaP</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Ram_Shriram" title="Ram Shriram">marirhS maR</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Shirley_M._Tilghman" title="Shirley M. Tilghman">namhgliT .M yelrihS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B>rosivdA roineS</B> :<A href="http://en.wikipedia.org/wiki/Al_Gore" title="Al Gore">eroG lA</A></SPAN></TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">gnisitrevdA</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">reganaM dA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/AdMob" title="AdMob">boMdA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Adscape" title="Adscape">epacsdA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/AdSense" title="AdSense">esneSdA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Advertising_Professional" title="Google Advertising Professional">slanoisseforP gnisitrevdA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/AdWords" title="AdWords">sdroWdA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Analytics" title="Google Analytics">scitylanA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Checkout" title="Google Checkout">tuokcehC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/DoubleClick" title="DoubleClick">kcilCelbuoD</A></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">noitacinummoC</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">strelA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Calendar" title="Google Calendar">radnelaC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Friend_Connect" title="Google Friend Connect">tcennoC dneirF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Gmail" title="Gmail">liamG</A><SMALL>(&nbsp;<A href="http://en.wikipedia.org/wiki/History_of_Gmail" title="History of Gmail">yrotsih</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Gmail_interface" title="Gmail interface">ecafretni</A>)</SMALL><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Groups" title="Google Groups">spuorG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Talk" title="Google Talk">klatG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Latitude" title="Google Latitude">edutitaL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Orkut" title="Orkut">tukrO</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Questions_and_Answers" title="Google Questions and Answers">A &amp; Q</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Reader" title="Google Reader">redaeR</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Translate" title="Google Translate">etalsnarT</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Voice" title="Google Voice">ecioV</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Wave" title="Google Wave">evaW</A></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">erawtfoS</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">emorhC</STRONG><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Chrome_OS" title="Google Chrome OS">SO emorhC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Desktop" title="Google Desktop">potkseD</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Earth" title="Google Earth">htraE</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Desktop#Gadgets_.26_plug-ins" title="Google Desktop">stegdaG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Gmail_Mobile" title="Gmail Mobile">eliboM liamG</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)">tupnI esenapaJ</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Pack" title="Google Pack">kcaP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Picasa" title="Picasa">asaciP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Pinyin" title="Google Pinyin">niyniP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_PowerMeter" title="Google PowerMeter">reteMrewoP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/SketchUp" title="SketchUp">pUhctekS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Talk" title="Google Talk">klaT</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Toolbar" title="Google Toolbar">rablooT</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Pack#Google_Updater" title="Google Pack">retadpU</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Urchin_(software)" title="Urchin (software)">nihcrU</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">smroftalP</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">tnuoccA</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">diordnA</A> <SMALL>(<A href="http://en.wikipedia.org/wiki/Nexus_One" title="Nexus One">enO suxeN</A>)</SMALL><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_App_Engine" title="Google App Engine">enignE ppA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Apps" title="Google Apps">sppA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Base" title="Google Base">esaB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/BigTable" title="BigTable">elbaTgiB</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">ajaC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Co-op" title="Google Co-op">po-oC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Gears_(software)" title="Gears (software)">sraeG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_File_System" title="Google File System">SFG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Health" title="Google Health">htlaeH</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Native_Client" title="Google Native Client">tneilC evitaN</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/OpenSocial" title="OpenSocial">laicoSnepO</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Public_DNS" title="Google Public DNS">SND cilbuP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Wave_Federation_Protocol" title="Google Wave Federation Protocol">evaW</A></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">sloot tnempoleveD</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">sIPA XAJA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Closure_Tools" title="Google Closure Tools">slooT erusolC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Code" title="Google Code">edoC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Gadgets_API" title="Google Gadgets API">IPA stegdaG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/GData" title="GData">ataDG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Googlebot" title="Googlebot">tobelgooG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Guice" title="Google Guice">eciuG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Web_Server" title="Google Web Server">SWG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Image_Labeler" title="Google Image Labeler">relebaL egamI</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Keyhole_Markup_Language" title="Keyhole Markup Language">LMK</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/MapReduce" title="MapReduce">ecudeRpaM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/SketchUp_Ruby" title="SketchUp Ruby">ybuR pUhctekS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Sitemaps" title="Sitemaps">spametiS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Summer_of_Code" title="Google Summer of Code">edoC fo remmuS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_TechTalks" title="Google TechTalks" class="mw-redirect">sklaThceT</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Web_Toolkit" title="Google Web Toolkit">tiklooT beW</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Website_Optimizer" title="Google Website Optimizer">rezimitpO etisbeW</A></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">gnihsilbuP</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)">reggolB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Bookmarks" title="Google Bookmarks">skramkooB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Docs" title="Google Docs">scoD</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/FeedBurner" title="FeedBurner">renruBdeeF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/IGoogle" title="IGoogle">elgooGi</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Jaiku" title="Jaiku">ukiaJ</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Knol" title="Knol">lonK</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Map_Maker" title="Google Map Maker">rekaM paM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Panoramio" title="Panoramio">oimaronaP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Picasa#Picasa_Web_Albums" title="Picasa">smublA beW asaciP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Sites" title="Google Sites">)topStoJ( setiS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/YouTube" title="YouTube">ebuTuoY</A></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">( hcraeS<A href="http://en.wikipedia.org/wiki/PageRank" title="PageRank">knaRegaP</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">ecnailppA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Audio_Indexing" title="Google Audio Indexing">oiduA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Book_Search" title="Google Book Search">skooB</A><SMALL>(&nbsp;<A href="http://en.wikipedia.org/wiki/Google_Books_Library_Project" title="Google Books Library Project">tcejorP yrarbiL</A>)</SMALL><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Code_Search" title="Google Code Search">edoC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Desktop" title="Google Desktop">potkseD</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Fast_Flip" title="Google Fast Flip">pilF tsaF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Finance" title="Google Finance">ecnaniF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/GOOG-411" title="GOOG-411">114-GOOG</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">segamI</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Maps" title="Google Maps">spaM</A><SMALL>(&nbsp;<A href="http://en.wikipedia.org/wiki/Google_Street_View" title="Google Street View">weiV teertS</A>)</SMALL><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_News" title="Google News">sweN</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Patents" title="Google Patents">stnetaP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Product_Search" title="Google Product Search">stcudorP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Scholar" title="Google Scholar">ralohcS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_SearchWiki" title="Google SearchWiki">ikiWhcraeS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Groups" title="Google Groups">tenesU</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Video" title="Google Video" class="mw-redirect">oediV</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_search" title="Google search">hcraeS beW</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> :sisylanA <A href="http://en.wikipedia.org/wiki/Google_Insights_for_Search" title="Google Insights for Search">hcraeS rof sthgisnI</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Trends" title="Google Trends">sdnerT</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_guidelines" title="Google guidelines">senilediug retsambeW</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">deunitnocsiD</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">srewsnA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Browser_Sync" title="Google Browser Sync">cnyS resworB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/AdWords#Click-to-Call" title="AdWords">llaC-ot-kcilC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Dodgeball_(service)" title="Dodgeball (service)">llabegdoD</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Joga_Bonito" title="Joga Bonito">otinoB agoJ</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Lively" title="Google Lively">yleviL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Mashup_Editor" title="Google Mashup Editor">rotidE puhsaM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Notebook" title="Google Notebook">koobetoN</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Page_Creator" title="Google Page Creator">rotaerC egaP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Video_Marketplace" title="Google Video Marketplace">ecalptekraM oediV</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Web_Accelerator" title="Google Web Accelerator">rotareleccA beW</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">osla eeS</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">snoitisiuqcA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_bomb" title="Google bomb">bmoB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Censorship_by_Google" title="Censorship by Google">pihsrosneC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Criticism_of_Google" title="Criticism of Google">msicitirC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google.org#Google_Foundation" title="Google.org">noitadnuoF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_China" title="Google China">anihC elgooG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google.org" title="Google.org">gro.elgooG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Googleplex" title="Googleplex">xelpelgooG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/History_of_Google" title="History of Google">yrotsiH</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google%27s_hoaxes" title="Google&#39;s hoaxes">sexaoH</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">ykcuL gnileeF m'I</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_I/O" title="Google I/O">O/I</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Labs" title="Google Labs">sbaL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_logo" title="Google logo">ogoL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Lunar_X_Prize" title="Google Lunar X Prize">ezirP X ranuL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/List_of_Google_products" title="List of Google products">stcudorP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Ventures" title="Google Ventures">serutneV elgooG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_WiFi" title="Google WiFi">iFiW</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Zeitgeist" title="Google Zeitgeist" class="mw-redirect">tsiegtieZ</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>eunever launnA</B> :<A href="http://en.wikipedia.org/wiki/United_States_dollar" title="United States dollar">$SU</A> 08.12<A href="http://en.wikipedia.org/wiki/1000000000_(number)" title="1000000000 (number)">noillib</A>( <A href="http://en.wikipedia.org/wiki/Fiscal_year" title="Fiscal year">YF</A> ,8002 <SPAN style="color: #0c0; font-size: larger;">▲</SPAN>&nbsp;)7002 morf &#37;13<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B><A href="http://en.wikipedia.org/wiki/Category:Google_employees" title="Category:Google employees">seeyolpmE</A></B>&nbsp;)9002 ,03 .nuJ( emit-lluf 687,91 :<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">lobmys kcotS</A></B>( :<A href="http://en.wikipedia.org/wiki/NASDAQ" title="NASDAQ">QADSAN</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">ESL</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">AEGG</A>&nbsp;)<B>·</B></SPAN> <SPAN style="white-space:nowrap"><B>ottoM</B> :<A href="http://en.wikipedia.org/wiki/Don%27t_be_evil" title="Don&#39;t be evil">live eb t'noD</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">etisbeW</A></B> :<A href="http://www.google.com/" class="external text" rel="nofollow">moc.elgoog.www</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);">wohs</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">sresworb beW</A> <SMALL>(<A href="http://en.wikipedia.org/wiki/List_of_web_browsers" title="List of web browsers">tsil</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">xinU rof tsil</A> ,<A href="http://en.wikipedia.org/wiki/Comparison_of_web_browsers" title="Comparison of web browsers">nosirapmoc</A> ,<A href="http://en.wikipedia.org/wiki/History_of_the_web_browser" title="History of the web browser">yrotsih</A> ,<A href="http://en.wikipedia.org/wiki/Usage_share_of_web_browsers" title="Usage share of web browsers">erahs egasu</A> ,<A href="http://en.wikipedia.org/wiki/Timeline_of_web_browsers" title="Timeline of web browsers">enilemit</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)">tnedirT</A>-<A href="http://en.wikipedia.org/wiki/Internet_Explorer_shell" title="Internet Explorer shell">sllehs</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">rerolpxE LOA</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Avant_Browser" title="Avant Browser">tnavA</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Enigma_Browser" title="Enigma Browser">amginE</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/GreenBrowser" title="GreenBrowser">resworBneerG</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Maxthon" title="Maxthon">nohtxaM</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/MenuBox" title="MenuBox">xoBuneM</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/NeoPlanet" title="NeoPlanet">tenalPoeN</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/NetCaptor" title="NetCaptor">rotpaCteN</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Netscape_Browser" title="Netscape Browser">8 epacsteN</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Internet_Explorer" title="Internet Explorer">rerolpxE tenretnI</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">XINU rof</A></I>)</SMALL>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/IRider" title="IRider">rediRi</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Sleipnir_(web_browser)" title="Sleipnir (web browser)">rinpielS</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">relevarT tnecneT</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/UltraBrowser" title="UltraBrowser">resworBartlU</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/WebbIE" title="WebbIE">EIbbeW</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Zac_Browser" title="Zac Browser">resworB caZ</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)">okceG</A>desab-</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">ogoP T&amp;TA</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Beonex_Communicator" title="Beonex Communicator">rotacinummoC xenoeB</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Camino" title="Camino">onimaC</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Classilla" title="Classilla">allissalC</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Conkeror" title="Conkeror">roreknoC</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/DocZilla" title="DocZilla">alliZcoD</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)">ynahpipE</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Firefox_for_mobile" title="Firefox for mobile">elibom rof xoferiF</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Flock_(web_browser)" title="Flock (web browser)">kcolF</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Galeon" title="Galeon">noelaG</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/GNU_IceCat" title="GNU IceCat">taCecI UNG</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Gnuzilla" title="Gnuzilla">allizunG</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/K-Meleon" title="K-Meleon">noeleM-K</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Kazehakase" title="Kazehakase">esakahezaK</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Kirix_Strata" title="Kirix Strata">atartS xiriK</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Madfox" title="Madfox">xofdaM</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/MicroB" title="MicroB">BorciM</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Minimo" title="Minimo">ominiM</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">allizoM</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Mozilla_Firefox" title="Mozilla Firefox">xoferiF allizoM</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)">epacsteN</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">yeknoMaeS</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)">enotspikS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Sleipnir_(web_browser)" title="Sleipnir (web browser)">rinpielS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Swiftfox" title="Swiftfox">xoftfiwS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Swiftweasel" title="Swiftweasel">lesaewtfiwS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Wyzo" title="Wyzo">ozyW</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/XeroBank_Browser" title="XeroBank Browser">resworB knaBoreX</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">tiKbeW</A>desab-</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">esworBA</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><STRONG class="selflink">emorhC</STRONG>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Epiphany_(web_browser)" title="Epiphany (web browser)">ynahpipE</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Fluid_(browser)" title="Fluid (browser)">diulF</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/ICab" title="ICab">baCi</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Iris_Browser" title="Iris Browser">resworB sirI</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Midori_(web_browser)" title="Midori (web browser)">irodiM</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/OmniWeb" title="OmniWeb">beWinmO</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Origyn_Web_Browser" title="Origyn Web Browser">resworB beW nygirO</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Rekonq" title="Rekonq">qnoker</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">resworb bew 06S</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">irafaS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Shiira" title="Shiira">ariihS</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)">enotspikS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/SRWare_Iron" title="SRWare Iron">norI eraWRS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Stainless_(web_browser)" title="Stainless (web browser)">sselniatS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Steel_(web_browser)" title="Steel (web browser)">leetS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Teashark" title="Teashark">krahsaeT</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Uzbl" title="Uzbl">lbzU</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)">otserP</A>desab-</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)">arepO</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Nintendo_DS_Browser" title="Nintendo DS Browser">resworB SD odnetniN</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Internet_Channel" title="Internet Channel">lennahC tenretnI</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_Mini" title="Opera Mini">iniM arepO</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_Mobile" title="Opera Mobile">eliboM arepO</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)">avaJ</A>desab-</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">avaJtoH</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)">oboL</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_Mini" title="Opera Mini">iniM arepO</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Teashark" title="Teashark">krahsaeT</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/UZard_Web" title="UZard Web">beW draZu</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/X-Smiles" title="X-Smiles">selimS-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/KHTML" title="KHTML">LMTHK</A>desab-</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">roreuqnoK</A>&nbsp;<B>·</B> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Konqueror_Embedded" title="Konqueror Embedded">deddebmE roreuqnoK</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)">namsaT</A>desab-</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">caM rof rerolpxE tenretnI</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">X SO caM rof NSM</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">ecafretni resu txeT</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">xnyLA</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Edbrowse" title="Edbrowse">esworbde</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/ELinks" title="ELinks">skniLE</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Emacs/W3" title="Emacs/W3">3W/scamE</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Links_(web_browser)" title="Links (web browser)">skniL</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Lynx_(web_browser)" title="Lynx (web browser)">xnyL</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Net-Tamer" title="Net-Tamer">remaT-teN</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/W3m" title="W3m">m3w</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/WebbIE" title="WebbIE">EIbbeW</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">resworb eliboM</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)">rezalB</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Bolt_browser" title="Bolt browser">resworb tloB</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">hsifpeeD</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">elibom rof xoferiF</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/IbisBrowser" title="IbisBrowser">resworBsibI</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Internet_Explorer_Mobile" title="Internet Explorer Mobile">eliboM rerolpxE tenretnI</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Iris_Browser" title="Iris Browser">resworB sirI</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/JOCA" title="JOCA">ACOJ</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Konqueror_Embedded" title="Konqueror Embedded">deddebmE roreuqnoK</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/MicroB" title="MicroB">BorciM</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/Minimo" title="Minimo">ominiM</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/NetFront" title="NetFront">tnorFteN</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Obigo_Browser" title="Obigo Browser">resworB ogibO</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_Mobile" title="Opera Mobile">eliboM arepO</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Pixo" title="Pixo">oxiP</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">resworb bew 06S</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">irafaS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Skyfire_(web_browser)" title="Skyfire (web browser)">erifykS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Steel_(web_browser)" title="Steel (web browser)">leetS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Teashark" title="Teashark">krahsaeT</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/ThunderHawk_(web_browser)" title="ThunderHawk (web browser)">kwaHrednuhT</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/UCWEB" title="UCWEB">BEWCU</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/UZard_Web" title="UZard Web">beW draZu</A>&nbsp;·<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/WinWAP" title="WinWAP">PAWniW</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">LMTH eliboM<BR>redocsnarT
+</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">ACOJ</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Opera_Mini" title="Opera Mini">iniM arepO</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Skyfire_(web_browser)" title="Skyfire (web browser)">erifykS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Skweezer" title="Skweezer">rezeewkS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Teashark" title="Teashark">krahsaeT</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/UZard_Web" title="UZard Web">beW draZu</A></SPAN></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">rehtO</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)">B3</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Abaco_(web_browser)" title="Abaco (web browser)">ocaba</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Amaya_(web_browser)" title="Amaya (web browser)">ayamA</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Arachne_(web_browser)" title="Arachne (web browser)">enhcarA</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)">anerA</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/AWeb" title="AWeb">beWA</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Charon_(web_browser)" title="Charon (web browser)">norahC</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Chimera_(web_browser)" title="Chimera (web browser)">aremihC</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Dillo" title="Dillo">olliD</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Gazelle_(web_browser)" title="Gazelle (web browser)">ellezaG</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/IBrowse" title="IBrowse">esworBI</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/KidZui" title="KidZui">iuZdiK</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Lunascape_(web_browser)" title="Lunascape (web browser)">epacsanuL</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Mothra_(web_browser)" title="Mothra (web browser)">arhtoM</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><I><A href="http://en.wikipedia.org/wiki/NetPositive" title="NetPositive">evitisoPteN</A></I>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/NetSurf" title="NetSurf">fruSteN</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Oregano_(web_browser)" title="Oregano (web browser)">onagerO</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/TheWorld_Browser" title="TheWorld Browser">dlroWehT</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/VMS_Mosaic" title="VMS Mosaic">ciasoM SMV</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Voyager_(web_browser)" title="Voyager (web browser)">regayoV</A></SPAN></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">serutaeF</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">gniretlif dA</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Download_manager" title="Download manager">reganam daolnwoD</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Favicon" title="Favicon">nocivaF</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Incremental_find" title="Incremental find">dnif latnemercnI</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">kramkoob tenretnI</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Livemark" title="Livemark" class="mw-redirect">krameviL</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Privacy_mode" title="Privacy mode">edom ycavirP</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Tab_(GUI)" title="Tab (GUI)">gnisworb debbaT</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">nottub tide lasrevinU</A></SPAN></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">sdradnats beW</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">WLMD3</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets" title="Cascading Style Sheets">steehS elytS gnidacsaC</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/HTML" title="HTML">LMTH</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">5 LMTH</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/XHTML" title="XHTML">LMTHX</A></SPAN></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">selcitra detaleR</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">sraw resworB</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Site-specific_browser" title="Site-specific browser">resworb cificeps-etiS</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Web_page" title="Web page">egap beW</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/World_Wide_Web" title="World Wide Web">beW ediW dlroW</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">golataC dna ediuG s'resU tenretnI elohW</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Internet_suite" title="Internet suite">etius tenretnI</A>&nbsp;<B>·</B></SPAN> <SPAN style="white-space:nowrap"><A href="http://en.wikipedia.org/wiki/Mobile_Web" title="Mobile Web">beW eliboM</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);">wohs</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">X SO caM</A> <A href="http://en.wikipedia.org/wiki/Web_browser" title="Web browser">sresworb bew</A></SPAN></TH>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">evisulcxe SO caM</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">onimaC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/ICab" title="ICab">baCi</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">caM rof rerolpxE tenretnI</A></I><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/OmniWeb" title="OmniWeb">beWinmO</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Shiira" title="Shiira">ariihS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Stainless_(web_browser)" title="Stainless (web browser)">sselniatS</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=";;">mroftalp-ssorC</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)">ayamA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Dillo" title="Dillo">olliD</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/ELinks" title="ELinks">skniLE</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Epiphany_(web_browser)" title="Epiphany (web browser)">ynahpipE</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <STRONG class="selflink">emorhC elgooG</STRONG><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla_Firefox" title="Mozilla Firefox">xoferiF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Flock_(web_browser)" title="Flock (web browser)">kcolF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Galeon" title="Galeon">noelaG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Konqueror" title="Konqueror">roreuqnoK</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Links_(web_browser)" title="Links (web browser)">skniL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Lynx_(web_browser)" title="Lynx (web browser)">xnyL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Netscape_Navigator_9" title="Netscape Navigator 9"><I>epacsteN</I></A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Opera_(web_browser)" title="Opera (web browser)">arepO</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Safari_(web_browser)" title="Safari (web browser)">irafaS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/SeaMonkey" title="SeaMonkey">yeknoMaeS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/W3m" title="W3m">m3w</A></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">detaleR</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">sraw resworB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/HyperCard" title="HyperCard">draCrepyH</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Gopher_(protocol)" title="Gopher (protocol)">rehpoG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/E-mail" title="E-mail">liam-E</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Elm_(e-mail_client)" title="Elm (e-mail client)">mlE</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Web_page" title="Web page">egap beW</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Viewdata" title="Viewdata">atadweiV</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Teletext" title="Teletext">txeteleT</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Videotex" title="Videotex">xetoediV</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/X.25" title="X.25">52.X</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Aliweb" title="Aliweb">bewilA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/ASCII" title="ASCII">IICSA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/HTML" title="HTML">egaugnaL pukraM txeTrepyH</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/HyTelnet" title="HyTelnet">tenleTyH</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/VRML" title="VRML">egaugnaL pukraM ytilaeR lautriV</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/File_Transfer_Protocol" title="File Transfer Protocol">locotorP refsnarT eliF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Telnet" title="Telnet">tenleT</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/NLS_(computer_system)" title="NLS (computer system)">SLN</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/NCSA_Telnet" title="NCSA Telnet">tenleT ASCN</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/UUCP" title="UUCP">PCUU</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Usenet" title="Usenet">tenesU</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/ARPANET" title="ARPANET">TENAPRA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/BITNET" title="BITNET">TENTIB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Prodigy_(online_service)" title="Prodigy (online service)">ygidorP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/CompuServe" title="CompuServe">evreSupmoC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/World_Wide_Web" title="World Wide Web">beW ediW dlroW</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">golataC dna ediuG s'resU tenretnI elohW</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);">wohs</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">erawtfos ecruos nepo dna eerF</A></SPAN></TH>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">lareneG</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">tfelypoC</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">sdrawA dna stnevE</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Free_software" title="Free software">erawtfos eerF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/The_Free_Software_Definition" title="The Free Software Definition">noitinifeD erawtfoS eerF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Gratis_versus_Libre" title="Gratis versus Libre">erbiL susrev sitarG</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">segakcap erawtfos ecruos nepo dna eerf fo tsiL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Open_source_software" title="Open source software">erawtfos ecruos nepO</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">seilimaf metsys gnitarepO</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">SORA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Berkeley_Software_Distribution" title="Berkeley Software Distribution">DSB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Darwin_(operating_system)" title="Darwin (operating system)">niwraD</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/FreeDOS" title="FreeDOS">SODeerF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/GNU" title="GNU">UNG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Haiku_(operating_system)" title="Haiku (operating system)">ukiaH</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Inferno_(operating_system)" title="Inferno (operating system)">onrefnI</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Linux" title="Linux">xuniL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Mach_(kernel)" title="Mach (kernel)">hcaM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/MINIX" title="MINIX">XINIM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/OpenSolaris" title="OpenSolaris">siraloSnepO</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">9 nalP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/ReactOS" title="ReactOS">SOtcaeR</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">tnempoleveD</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)">espilcE</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Free_Pascal" title="Free Pascal">lacsaP eerF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/GNU_Compiler_Collection" title="GNU Compiler Collection">CCG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Java_(programming_language)" title="Java (programming language)">avaJ</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/LibJIT" title="LibJIT">TIJbil</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Low_Level_Virtual_Machine" title="Low Level Virtual Machine">MVLL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Lua_(programming_language)" title="Lua (programming language)">auL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Open64" title="Open64">46nepO</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Perl" title="Perl">lreP</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)">nohtyP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/ROSE_compiler_framework" title="ROSE compiler framework">ESOR</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Ruby_(programming_language)" title="Ruby (programming language)">ybuR</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Tcl" title="Tcl">lcT</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">yrotsiH</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">UNG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/History_of_Linux" title="History of Linux">xuniL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla" title="Mozilla">allizoM</A>( <A href="http://en.wikipedia.org/wiki/History_of_Mozilla_Application_Suite" title="History of Mozilla Application Suite">etiuS noitacilppA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/History_of_Mozilla_Firefox" title="History of Mozilla Firefox">xoferiF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/History_of_Mozilla_Thunderbird" title="History of Mozilla Thunderbird">dribrednuhT</A>)</DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">snoitazinagrO</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">noitadnuoF erawtfoS ehcapA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Blender_Foundation" title="Blender Foundation">noitadnuoF rednelB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Eclipse_Foundation" title="Eclipse Foundation">noitadnuoF espilcE</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Freedesktop.org" title="Freedesktop.org">gro.potksedeerf</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Free_Software_Foundation" title="Free Software Foundation">noitadnuoF erawtfoS eerF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/GNOME_Foundation" title="GNOME Foundation">noitadnuoF EMONG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/GNU_Project" title="GNU Project">tcejorP UNG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_Code" title="Google Code">edoC elgooG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Linux_Foundation" title="Linux Foundation">noitadnuoF xuniL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla_Foundation" title="Mozilla Foundation">noitadnuoF allizoM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Open_Source_Initiative" title="Open Source Initiative">evitaitinI ecruoS nepO</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/SourceForge" title="SourceForge">egroFecruoS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Symbian_Foundation" title="Symbian Foundation">noitadnuoF naibmyS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Xiph.Org_Foundation" title="Xiph.Org Foundation">noitadnuoF grO.hpiX</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/X.Org_Foundation" title="X.Org Foundation">noitadnuoF grO.X</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">secneciL</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">ehcapA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Artistic_License" title="Artistic License">citsitrA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/BSD_licenses" title="BSD licenses">DSB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/GNU_General_Public_License" title="GNU General Public License">LPG UNG</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">LPGL UNG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/MIT_License" title="MIT License">TIM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla_Public_License" title="Mozilla Public License">LPM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Shared_source#Open_Source_licenses" title="Shared source">LR/LP-sM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Zlib_License" title="Zlib License">bilz</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">sesnecil devorppa FSF</A></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">segnellahC</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">bolb yraniB</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Digital_rights_management" title="Digital rights management">tnemeganam sthgir latigiD</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Graphics_hardware_and_FOSS" title="Graphics hardware and FOSS">ytilibitapmoc erawdrah scihparG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/License_proliferation" title="License proliferation">noitarefilorp esneciL</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">gnidnarber erawtfos allizoM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Proprietary_software" title="Proprietary software">erawtfos yrateirporP</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/SCO-Linux_controversies" title="SCO-Linux controversies">seisrevortnoc xuniL-OCS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Open_source_software_security" title="Open source software security">ytiruceS</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">stnetap erawtfoS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Tivoization" title="Tivoization">noitazioviT</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Trusted_Computing" title="Trusted Computing">gnitupmoC detsurT</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Viral_license" title="Viral license">esnecil lariV</A></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">scipot rehtO</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">smret evitanretlA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Free_software_community" title="Free software community">ytinummoC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Linux_distribution" title="Linux distribution">noitubirtsid xuniL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Fork_(software_development)" title="Fork (software development)">gnikroF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Free_software_movement" title="Free software movement">tnemevoM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Microsoft_Open_Specification_Promise" title="Microsoft Open Specification Promise">esimorP noitacificepS nepO tfosorciM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <I><A href="http://en.wikipedia.org/wiki/Revolution_OS" title="Revolution OS">SO noituloveR</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">ecruos desolc htiw nosirapmoC</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);">wohs</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">snoitacilppa tenretnI hciR</A></SPAN></TH>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">skrowemarf cisaB</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">xelF ebodA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Apache_Pivot" title="Apache Pivot">toviP ehcapA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Curl_(programming_language)" title="Curl (programming language)">lruC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Google_App_Engine" title="Google App Engine">enignE ppA elgooG</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/JavaFX" title="JavaFX">XFavaJ</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Microsoft_Silverlight" title="Microsoft Silverlight">thgilrevliS</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/SproutCore" title="SproutCore">eroCtuorpS</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">oniccuppaC</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/XULRunner" title="XULRunner">rennuRLUX</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">BSS</A>smroftalp </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">emitnuR detargetnI ebodA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Mozilla_Prism" title="Mozilla Prism">msirP allizoM</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <STRONG class="selflink">emorhC elgooG</STRONG> <SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Fluid_(browser)" title="Fluid (browser)">diulF</A></DIV>
+</TD>
+</TR>
+<TR style="height: 2px; display: none; ">
+<TD>
+</TR>
+<TR style="display: none; ">
+<TD class="navbox-group" style=";;">detaleR</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">krowemarf noitacilppa beW</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Fat_client" title="Fat client">tneilc taF</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Vector_graphics" title="Vector graphics">scihparg rotceV</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/JavaScript" title="JavaScript">tpircSavaJ</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Layout_engine" title="Layout engine">enigne tuoyaL</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Run-time_system" title="Run-time system">emitnuR</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Widget_engine" title="Widget engine">enigne tegdiW</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/ActiveX" title="ActiveX">XevitcA</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/Java_applet" title="Java applet">telppa avaJ</A><SPAN style="font-weight:bold;">·&nbsp;</SPAN> <A href="http://en.wikipedia.org/wiki/User_interface_markup_language" title="User interface markup language">egaugnal pukram ecafretni resU</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">" morf deveirteR
+<A href="./chrome_wikipedia_ORIGINAL_files/chrome_wikipedia_ORIGINAL.html">emorhC_elgooG/ikiw/gro.aidepikiw.ne//:ptth</A>"</DIV>
+ <DIV id="catlinks" class="catlinks"><DIV id="mw-normal-catlinks"><A href="http://en.wikipedia.org/wiki/Special:Categories" title="Special:Categories">seirogetaC</A> :<SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:2008_software" title="Category:2008 software">erawtfos 8002</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:C%2B%2B_software" title="Category:C++ software">erawtfos ++C</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Cloud_clients" title="Category:Cloud clients">stneilc duolC</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Free_web_browsers" title="Category:Free web browsers">sresworb bew eerF</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Google_services" title="Category:Google services">secivres elgooG</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Windows_web_browsers" title="Category:Windows web browsers">sresworb bew swodniW</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Software_based_on_Webkit" title="Category:Software based on Webkit">tikbeW no desab erawtfoS</A></SPAN> | <SPAN dir="ltr"><A href="http://en.wikipedia.org/wiki/Category:Site-specific_browsing" title="Category:Site-specific browsing">gnisworb cificeps-etiS</A></SPAN></DIV><DIV id="mw-hidden-catlinks" class="mw-hidden-cats-hidden"> :seirogetac neddiH<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">sknil lanretxe daed htiw selcitra llA</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">9002 yaM morf sknil lanretxe daed htiw selcitrA</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">9002 rebmeceD morf stnemetats detad yllaitnetop gniniatnoc selcitrA</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">stnemetats detad yllaitnetop gniniatnoc selcitra llA</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">stnemetats decruosnu htiw selcitra llA</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">9002 rebmetpeS morf stnemetats decruosnu htiw selcitrA</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">9002 rebmevoN morf stnemetats decruosnu htiw selcitrA</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">9002 hcraM morf stnemetats decruosnu htiw selcitrA</A></SPAN></DIV></DIV> <!-- end content -->
+ <DIV class="visualClear"></DIV>
+ </DIV>
+ </DIV>
+ </DIV>
+ <DIV id="column-one">
+ <DIV id="p-cactions" class="portlet">
+ <H5>sweiV</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">elcitrA</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">noissucsiD</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">egap siht tidE</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">yrotsiH</A></LI> </UL>
+ </DIV>
+ </DIV>
+ <DIV class="portlet" id="p-personal">
+ <H5>sloot lanosreP</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">ateB yrT</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">tnuocca etaerc / ni goL</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">noitagivaN</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">egap niaM</A></LI>
+ <LI id="n-contents"><A href="http://en.wikipedia.org/wiki/Portal:Contents" title="Guides to browsing Wikipedia">stnetnoC</A></LI>
+ <LI id="n-featuredcontent"><A href="http://en.wikipedia.org/wiki/Portal:Featured_content" title="Featured content &mdash; the best of Wikipedia">tnetnoc derutaeF</A></LI>
+ <LI id="n-currentevents"><A href="http://en.wikipedia.org/wiki/Portal:Current_events" title="Find background information on current events">stneve tnerruC</A></LI>
+ <LI id="n-randompage"><A href="http://en.wikipedia.org/wiki/Special:Random" title="Load a random article [alt-x]" accesskey="x">elcitra modnaR</A></LI>
+ </UL>
+ </DIV>
+ </DIV>
+ <DIV id="p-search" class="portlet">
+ <H5 lang="en" xml:lang="en"><LABEL for="searchInput">hcraeS</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">noitcaretnI</H5>
+ <DIV class="pBody">
+ <UL>
+ <LI id="n-aboutsite"><A href="http://en.wikipedia.org/wiki/Wikipedia:About" title="Find out about Wikipedia">aidepikiW tuobA</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">latrop ytinummoC</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">segnahc tneceR</A></LI>
+ <LI id="n-contact"><A href="http://en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia">aidepikiW tcatnoC</A></LI>
+ <LI id="n-sitesupport"><A href="http://wikimediafoundation.org/wiki/Support_Wikipedia/en" title="Support us">aidepikiW ot etanoD</A></LI>
+ <LI id="n-help"><A href="http://en.wikipedia.org/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">pleH</A></LI>
+ </UL>
+ </DIV>
+ </DIV>
+ <DIV class="portlet" id="p-tb">
+ <H5 lang="en" xml:lang="en">xoblooT</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">ereh sknil tahW</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">segnahc detaleR</A></LI>
+<LI id="t-upload"><A href="http://en.wikipedia.org/wiki/Wikipedia:Upload" title="Upload files [alt-u]" accesskey="u">elif daolpU</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">segap laicepS</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">noisrev elbatnirP</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">knil tnenamreP</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">egap siht etiC</A></LI> </UL>
+ </DIV>
+ </DIV>
+ <DIV id="p-lang" class="portlet">
+ <H5 lang="en" xml:lang="en">segaugnaL</H5>
+ <DIV class="pBody">
+ <UL>
+ <LI class="interwiki-af"><A href="http://af.wikipedia.org/wiki/Google_Chrome">snaakirfA</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">àlataC</A></LI>
+ <LI class="interwiki-cs"><A href="http://cs.wikipedia.org/wiki/Google_Chrome">ykseČ</A></LI>
+ <LI class="interwiki-da"><A href="http://da.wikipedia.org/wiki/Google_Chrome">ksnaD</A></LI>
+ <LI class="interwiki-de"><A href="http://de.wikipedia.org/wiki/Google_Chrome">hcstueD</A></LI>
+ <LI class="interwiki-et"><A href="http://et.wikipedia.org/wiki/Google_Chrome">itseE</A></LI>
+ <LI class="interwiki-es"><A href="http://es.wikipedia.org/wiki/Google_Chrome">loñapsE</A></LI>
+ <LI class="interwiki-eo"><A href="http://eo.wikipedia.org/wiki/Google_Chrome">otnarepsE</A></LI>
+ <LI class="interwiki-eu"><A href="http://eu.wikipedia.org/wiki/Google_Chrome">araksuE</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">siaçnarF</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">ecsbresojnroH</A></LI>
+ <LI class="interwiki-hr"><A href="http://hr.wikipedia.org/wiki/Google_Chrome">ikstavrH</A></LI>
+ <LI class="interwiki-id"><A href="http://id.wikipedia.org/wiki/Google_Chrome">aisenodnI asahaB</A></LI>
+ <LI class="interwiki-is"><A href="http://is.wikipedia.org/wiki/Google_Chrome">aksnelsÍ</A></LI>
+ <LI class="interwiki-it"><A href="http://it.wikipedia.org/wiki/Google_Chrome">onailatI</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">neysiya lòyerK</A></LI>
+ <LI class="interwiki-lt"><A href="http://lt.wikipedia.org/wiki/Google_Chrome">ųivuteiL</A></LI>
+ <LI class="interwiki-li"><A href="http://li.wikipedia.org/wiki/Google_Chrome">sgrubmiL</A></LI>
+ <LI class="interwiki-hu"><A href="http://hu.wikipedia.org/wiki/Google_Chrome">raygaM</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">uyaleM asahaB</A></LI>
+ <LI class="interwiki-nl"><A href="http://nl.wikipedia.org/wiki/Google_Chrome">sdnalredeN</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">‬)låmkob( ksroN‪</A></LI>
+ <LI class="interwiki-nn"><A href="http://nn.wikipedia.org/wiki/Google_Chrome">‬)ksronyn( ksroN‪</A></LI>
+ <LI class="interwiki-oc"><A href="http://oc.wikipedia.org/wiki/Google_Chrome">naticcO</A></LI>
+ <LI class="interwiki-uz"><A href="http://uz.wikipedia.org/wiki/Google_Chrome">kebz'O</A></LI>
+ <LI class="interwiki-pl"><A href="http://pl.wikipedia.org/wiki/Google_Chrome">iksloP</A></LI>
+ <LI class="interwiki-pt"><A href="http://pt.wikipedia.org/wiki/Google_Chrome">sêugutroP</A></LI>
+ <LI class="interwiki-ro"><A href="http://ro.wikipedia.org/wiki/Google_Chrome">ănâmoR</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">piqhS</A></LI>
+ <LI class="interwiki-simple"><A href="http://simple.wikipedia.org/wiki/Google_Chrome">hsilgnE elpmiS</A></LI>
+ <LI class="interwiki-sk"><A href="http://sk.wikipedia.org/wiki/Google_Chrome">aničnevolS</A></LI>
+ <LI class="interwiki-sl"><A href="http://sl.wikipedia.org/wiki/Google_Chrome">aničšnevolS</A></LI>
+ <LI class="interwiki-sr"><A href="http://sr.wikipedia.org/wiki/Google_Chrome">iksprS / икспрС</A></LI>
+ <LI class="interwiki-fi"><A href="http://fi.wikipedia.org/wiki/Google_Chrome">imouS</A></LI>
+ <LI class="interwiki-sv"><A href="http://sv.wikipedia.org/wiki/Google_Chrome">aksnevS</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">eçkrüT</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">tệiV gnếiT</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">.55:00 ta 9002 rebmeceD 51 no deifidom tsal saw egap sihT </LI>
+ <LI id="copyright"> eht rednu elbaliava si txeT<A rel="license" href="http://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License">esneciL ekilAerahS-noitubirttA snommoC evitaerC</A><A rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/" style="display:none;"></A> eeS
+.ylppa yam smret lanoitidda
+;<A href="http://wikimediafoundation.org/wiki/Terms_of_Use">esU fo smreT</A>.sliated rof <BR> eht fo kramedart deretsiger a si ®aidepikiW
+<A href="http://www.wikimediafoundation.org/">.cnI ,noitadnuoF aidemikiW</A>.noitazinagro tiforp-non a ,</LI><LI><A class="internal" href="http://en.wikipedia.org/wiki/Wikipedia:Contact_us">su tcatnoC</A></LI>
+ <LI id="privacy"><A href="http://wikimediafoundation.org/wiki/Privacy_policy" title="wikimedia:Privacy policy">ycilop ycavirP</A></LI>
+ <LI id="about"><A href="http://en.wikipedia.org/wiki/Wikipedia:About" title="Wikipedia:About">aidepikiW tuobA</A></LI>
+ <LI id="disclaimer"><A href="http://en.wikipedia.org/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">sremialcsiD</A></LI>
+ </UL>
+ </DIV>
+</DIV>
+
+<SCRIPT type="text/javascript">if (window.runOnloadHook) runOnloadHook();</SCRIPT>
+<!-- Served by srv159 in 0.063 secs. -->
+</BODY></HTML> \ No newline at end of file
diff --git a/chrome/test/data/translate/reverse_text.py b/chrome/test/data/translate/reverse_text.py
new file mode 100644
index 0000000..baed9d1
--- /dev/null
+++ b/chrome/test/data/translate/reverse_text.py
@@ -0,0 +1,223 @@
+#!/usr/bin/env python
+# Copyright (c) 2009 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+""" Reverses the text of an HTML file.
+
+This classes poorly parses an HTML file and reverse the text strings (and only
+the text, not the tags).
+It is used to generates the _TRANSLATED.html files that the translator unittest
+uses.
+Note it is very hacky and buggy.
+"""
+
+import codecs
+import re
+import sys
+
+def Error(msg):
+ print msg;
+ sys.exit(1);
+
+class HTMLParser:
+ # IGNORED_[PAIRED|SINGLE]_TAGS should be kept in sync with kSkippedTags (see
+ # chrome/renderer/translator.cc).
+ # Paired tags are tags that are expected to have an opening and closing tag,
+ # the entire zone they contain is ignored.
+ # Single tags are not closed and are ignored.
+ IGNORED_PAIRED_TAGS = [ "APPLET", "AREA", "BASE", "FRAME", "FRAMESET", "HR",
+ "IFRAME", "MAP", "OBJECT", "PARAM", "SCRIPT", "STYLE",
+ "TEXTAREA" ];
+ IGNORED_SINGLE_TAGS = [ "META", "LINK", "IMG", "INPUT" ];
+
+ def __init__(self, input_path, output_path):
+ try:
+ input_file = codecs.open(input_path, 'r', 'utf-8');
+ except IOError:
+ Error("Failed to open '" + input_path + "' for reading.");
+
+ self.html_contents = input_file.read();
+ # Python does not have a find method case-insensitive, so we keep a lower
+ # case copy of the contents.
+ self.html_contents_lower = self.html_contents.lower();
+
+ input_file.close();
+
+ self.read_index = 0
+ self.write_index = 0
+ try:
+ self.output_file = codecs.open(output_path, 'w', 'utf-8');
+ except IOError:
+ Error("Failed to open '" + output_path + "' for writting.");
+
+ def printDebug(self, msg):
+ print u"** %s" % msg.encode('ascii', 'replace')
+
+ def removeBlanks(self, str):
+ p = re.compile('\s');
+ return p.sub('', str);
+
+ def extractTagName(self, str):
+ closing_tag = False;
+ str = str.strip();
+ if str[0] != "<":
+ Error("Interal error: attempting to extract tag name from invalid tag: " +
+ str);
+ if str[1] == "/":
+ closing_tag = True;
+
+ p = re.compile('</?\s*(\w*).*');
+ m = p.match(str);
+ if m == None:
+ Error("Interal error: failed to extract tag name from tag: " + str);
+ return (m.group(1).lower(), closing_tag);
+
+ def shouldIgnoreTag(self, tag):
+ """Returns a tuple (tag should be ignored, pared tags)
+ """
+ tag = tag.upper();
+ for tag_to_ignore in self.IGNORED_PAIRED_TAGS:
+ if tag_to_ignore == tag:
+ return True, True;
+ for tag_to_ignore in self.IGNORED_SINGLE_TAGS:
+ if tag_to_ignore == tag:
+ return True, False;
+ return False, False;
+
+ def skipToEndTag(self, tag):
+ """ Move the read_index to the position after the closing tag matching
+ |tag| and copies all the skipped data to the output file."""
+ index = self.html_contents_lower.find("</" + tag, self.read_index);
+ if index == -1:
+ Error("Failed to find tag end for tag " + tag + " at index " +
+ str(self.read_index));
+ self.writeToOutputFile(self.html_contents[self.read_index:]);
+ else:
+ self.writeToOutputFile(self.html_contents[self.read_index:index]);
+ self.read_index = index;
+
+ def writeToOutputFile(self, text):
+ try:
+ self.output_file.write(text)
+ except IOError:
+ Error("Failed to write to output file.");
+ # DEBUG
+ if len(text) > 100000:
+ Error("Writting too much text: " + text);
+# self.printDebug("Writting: " + text);
+# self.write_index += len(text);
+# self.printDebug("Wrote " + str(len(text)) + " bytes, write len=" + str(self.write_index));
+
+ def getNextTag(self):
+ """Moves the read_index to the end of the next tag and writes the tag to the
+ output file.
+ Returns a tuple end of file reached, tag name, if closing tag.
+ """
+
+ start_index = self.html_contents.find("<", self.read_index);
+ if start_index == -1:
+ self.writeToOutputFile(self.html_contents[self.read_index:]);
+ return (True, "", False);
+ stop_index = self.html_contents.find(">", start_index);
+ if stop_index == -1:
+ print "Unclosed tag found.";
+ self.writeToOutputFile(self.html_contents[self.read_index:]);
+ return (True, "", False);
+
+ # Write to the file the current text reverted.
+ # No need to do it if the string is only blanks, that would break the
+ # indentation.
+ text = self.html_contents[self.read_index:start_index]
+ text = self.processText(text);
+ self.writeToOutputFile(text);
+
+ tag = self.html_contents[start_index:stop_index + 1];
+ self.writeToOutputFile(tag);
+ self.read_index = stop_index + 1;
+ tag_name, closing_tag = self.extractTagName(tag);
+# self.printDebug("Raw tag=" + tag);
+# self.printDebug("tag=" + tag_name + " closing=" + str(closing_tag));
+# self.printDebug("read_index=" + str(self.read_index));
+
+ return (False, tag_name, closing_tag);
+
+ def processText(self, text):
+ if text.isspace():
+ return text;
+
+ # Special case of lonely &nbsp; with spaces. It should not be reversed as
+ # the renderer does not "translate" it as it is seen as empty string.
+ if text.strip().lower() == '&nbsp;':
+ return text;
+
+ # We reverse the string manually so to preserve &nbsp; and friends.
+ p = re.compile(r'&#\d{1,5};|&\w{2,6};');
+ # We create a dictionary where the key is the index at which the ASCII code
+ # starts and the value the index at which it ends.
+ entityNameIndexes = dict();
+ for match in p.finditer(text):
+ entityNameIndexes[match.start()] = match.end();
+ result = ""
+ i = 0;
+ while i < len(text):
+ if entityNameIndexes.has_key(i):
+ end_index = entityNameIndexes[i];
+ result = text[i:end_index] + result;
+ i = end_index;
+ elif text[i] == "%": # Replace percent to avoid percent encoding.
+ result = "&#37;" + result;
+ i = i + 1;
+ else:
+ result = text[i] + result;
+ i = i + 1;
+
+ return result;
+
+ def processTagContent(self):
+ """Reads the text from the current index to the next tag and writes the text
+ in reverse to the output file.
+ """
+ stop_index = self.html_contents.find("<", self.read_index);
+ if stop_index == -1:
+ text = self.html_contents[self.read_index:];
+ self.read_index += len(text);
+ else:
+ text = self.html_contents[self.read_index:stop_index];
+ self.read_index = stop_index;
+ text = self.processText(text);
+ self.writeToOutputFile(text);
+
+ def start(self):
+ while True:
+ end_of_file, tag, closing_tag = self.getNextTag();
+ # if closing_tag:
+ # self.printDebug("Read tag: /" + tag);
+ # else:
+ # self.printDebug("Read tag: " + tag);
+
+ if end_of_file: # We reached the end of the file.
+ self.writeToOutputFile(self.html_contents[self.read_index:]);
+ print "Done.";
+ sys.exit(0);
+
+ if closing_tag:
+ continue;
+
+ ignore_tag, paired_tag = self.shouldIgnoreTag(tag);
+ if ignore_tag and paired_tag:
+ self.skipToEndTag(tag);
+
+ # Read and reverse the text in the tab.
+ self.processTagContent();
+
+def main():
+ if len(sys.argv) != 3:
+ Error("Reverse the text in HTML pages\n"
+ "Usage reversetext.py <original_file.html> <dest_file.html>");
+
+ html_parser = HTMLParser(sys.argv[1], sys.argv[2]);
+ html_parser.start();
+
+if __name__ == "__main__":
+ main()