Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does the Kindle's web browser support Javascript? And what browser does it have (or emulate)?

I'm investigating platforms for web development and wondering whether a web based app could be used on an Ereader like the Kindle.

Does the Amazon Kindle (latest version 2.0, I think) web browser support Javascript?

What web browser does it have/based on? (Mozilla Firefox, etc.)

like image 397
Clay Nichols Avatar asked Feb 24 '11 04:02

Clay Nichols


People also ask

Does Kindle browser support JavaScript?

To see CSS and Javascript, switch from default mode to advanced mode and enable JS.

Does the Kindle have a web browser?

Among all its features, Kindle comes with a web browser.

How do I enable JavaScript on Kindle?

Press the Menu icon, located in the bottom center of the screen. Press Settings. Scroll down until you see “Enable JavaScript”. Press the checkbox next to it.


2 Answers

Kindle's browser uses the WebKit layout engine.

It supports javascript.

like image 191
Eelvex Avatar answered Sep 28 '22 05:09

Eelvex


Kindle "keyboard" devices running firmware 3.x (including jailbroken Kindle 2 upgraded to firmware 3.x) support the ES3 version of JavaScript and no HTML5 layout features, similar to what was supported by Internet Explorer 8.

Newer e-ink Kindle devices, like the PaperWhite, Oasis and Voyage running firmware 5.x support the ES5 version of JavaScript and some HTML5 layout features, similar to an original iPad running iOS 5.0.

You can inspect the source code for the browser, which Amazon supplies in their open source compliance download package. It is based on the WebKit sources circa 2009 with some customizations for e-ink rendering. The browser passes the Acid 3 standards compliance test with 100 out of 100 tests passing and almost totally matching the reference rendering.

The main issue with the browser on older Kindle devices is the outdated SSL certificates means any site that requires SSL (https instead of just http) will not load. Amazon did issue an emergency fix, which all users should apply so they can continue to both browse the web and connect to Amazon's digital storefront.

like image 33
Matt Hargett Avatar answered Sep 28 '22 05:09

Matt Hargett