diff options
Diffstat (limited to 'mobile/android/chrome/content/aboutPrivateBrowsing.xhtml')
-rw-r--r-- | mobile/android/chrome/content/aboutPrivateBrowsing.xhtml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/mobile/android/chrome/content/aboutPrivateBrowsing.xhtml b/mobile/android/chrome/content/aboutPrivateBrowsing.xhtml new file mode 100644 index 000000000..7075bd11e --- /dev/null +++ b/mobile/android/chrome/content/aboutPrivateBrowsing.xhtml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +--> +<!DOCTYPE html [ + <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> + %htmlDTD; + <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" > + %brandDTD; + <!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd"> + %globalDTD; + <!ENTITY % privatebrowsingpageDTD SYSTEM "chrome://browser/locale/aboutPrivateBrowsing.dtd"> + %privatebrowsingpageDTD; +]> + +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>&privatebrowsingpage.title;</title> + <meta name="viewport" content="width=device-width, initial-scale=1; user-scalable=no"/> + <link rel="stylesheet" href="chrome://browser/skin/aboutPrivateBrowsing.css" type="text/css" media="all"/> + <link rel="icon" type="image/png" href="chrome://branding/content/favicon32.png" /> + <script type="application/javascript;version=1.8" src="chrome://browser/content/aboutPrivateBrowsing.js"></script> + </head> + + <body class="private"> + <img class="showPrivate masq" src="chrome://browser/skin/images/privatebrowsing-mask-and-shield.svg" /> + <img class="showNormal masq" src="chrome://browser/skin/images/privatebrowsing-mask.png" /> + + <h1 class="showPrivate">&privatebrowsingpage.title;<br />&privatebrowsingpage.title.private;</h1> + <h1 class="showNormal">&privatebrowsingpage.title.normal1;</h1> + + <div class="contentSection"> + <p class="showPrivate">&privatebrowsingpage.description.trackingProtection;<br /><br />&privatebrowsingpage.description.privateDetails;</p> + <p class="showNormal">&privatebrowsingpage.description.normal2;</p> + + <p class="showPrivate"><a href="https://support.mozilla.org/kb/private-browsing-firefox-android">&privatebrowsingpage.link.private;</a></p> + <p class="showNormal"><a href="#" id="newPrivateTabLink">&privatebrowsingpage.link.normal;</a></p> + </div> + + </body> +</html> |