]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/assets/en/guide_local_storage.html
Add a DNT option and turn it on by default. Fixes https://redmine.stoutner.com/issues/30
[PrivacyBrowserAndroid.git] / app / src / main / assets / en / guide_local_storage.html
index ae110a6b4a92227a8662a132afb0e2659a3351c5..c0eeaaee4176b2d4521688569cd759054bf8ccd6 100644 (file)
 
 <html>
 <head>
-<style>
-    h3 {
-        color: 0D4781;
-    }
-</style>
+    <style>
+        h3 {
+            color: 0D4781;
+        }
+
+        img {
+            vertical-align: bottom;
+            height: 32;
+            width: 32;
+        }
+    </style>
 </head>
 
 <body>
-<h3>First-Party Cookies</h3>
+<h3><img src="images/cookie_dark_blue.png">First-Party Cookies</h3>
 
 <p>Cookies can be divided into two types.  First-party cookies are cookies set by the website in the URL bar at the top of the page.</p>
 
@@ -49,7 +55,7 @@
     as a warning.</p>
 
 
-<h3>Third-Party Cookies</h3>
+<h3><img src="images/cookie_dark_blue.png">Third-Party Cookies</h3>
 
 <p>Third-party cookies are set by portions of a website that are loaded from servers different from the URL at the top of the page.
     For example, most website that have advertisements load them from a third-party ad broker, like Google's
     between first-party and third-party cookies</a>. Thus, enabling first-party cookies will also enable third-party cookies.</p>
 
 
-<h3>DOM Storage</h3>
+<h3><img src="images/ic_web_dark_blue.png">DOM Storage</h3>
 
 <p>Document Object Model storage, also known as web storage, is like cookies on steroids. Whereas the maximum combined storage size for all cookies from
     a single URL is 4 kilobytes, DOM storage can hold between <a href="https://en.wikipedia.org/wiki/Web_storage#Storage_size">5-25 megabytes per site</a>.
     Because DOM storage uses JavaScript to read and write data, enabling it will do nothing unless JavaScript is also enabled.</p>
 
 
-<h3>Form Data</h3>
+<h3><img src="images/ic_subtitles_dark_blue.png">Form Data</h3>
 
 <p>Form data contains information typed into web forms, like user names, addresses, phone numbers, etc., and lists them in a drop-down box on future visits.
     Unlike the other forms of local storage, form data is not sent to the web server without specific user interaction.</p>