1 <!DOCTYPE html> 2 <html i18n-values="dir:textdirection;"> 3 <head> 4 <meta charset="utf-8"> 5 <title i18n-content="helpTitle"></title> 6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 7 <link rel="stylesheet" href="../uber/uber_shared.css"> 8 <link rel="stylesheet" href="help.css"> 9 <if expr="pp_ifdef('chromeos')"> 10 <link rel="stylesheet" href="chrome://resources/css/bubble.css"> 11 <link rel="stylesheet" href="chrome://resources/css/overlay.css"> 12 <link rel="stylesheet" href="channel_change_page.css"> 13 </if> 14 15 <script src="chrome://resources/js/cr.js"></script> 16 <script src="chrome://resources/js/load_time_data.js"></script> 17 <script src="chrome://resources/js/util.js"></script> 18 <script src="chrome://resources/js/cr/ui.js"></script> 19 <script src="chrome://resources/js/cr/ui/focus_manager.js"></script> 20 <if expr="pp_ifdef('chromeos')"> 21 <script src="chrome://resources/js/cr/ui/bubble.js"></script> 22 <script src="chrome://resources/js/cr/ui/overlay.js"></script> 23 <script src="chrome://resources/js/event_tracker.js"></script> 24 <script src="chrome://help-frame/channel_change_page.js"></script> 25 </if> 26 <script src="chrome://help-frame/help.js"></script> 27 </head> 28 <body class="uber-frame" 29 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 30 <div id="overlay-container" class="overlay" hidden> 31 <if expr="pp_ifdef('chromeos')"> 32 <include src="channel_change_page.html"> 33 </if> 34 </div> 35 <div class="page"> 36 <header> 37 <h1 i18n-content="aboutTitle"></h1> 38 </header> 39 <div id="about-container"> 40 <img src="chrome://theme/IDR_PRODUCT_LOGO_32"> 41 <div id="product-description"> 42 <h2 i18n-content="aboutProductTitle"></h2> 43 <span i18n-content="aboutProductDescription"></span> 44 </div> 45 </div> 46 <div id="help-container"> 47 <button id="get-help" i18n-content="getHelpWithChrome"></button> 48 <button id="report-issue" i18n-content="reportAnIssue"></button> 49 </div> 50 <div id="version-container"> 51 <div i18n-content="browserVersion" dir="ltr"></div> 52 <if expr="pp_ifdef('chromeos')"> 53 <div> 54 <span i18n-content="platform"></span> <span id="os-version"></span> 55 </div> 56 <div> 57 <span i18n-content="firmware"></span> <span id="firmware"></span> 58 </div> 59 </if> 60 <if expr="pp_ifdef('chromeos') or pp_ifdef('_google_chrome') or is_linux"> 61 <div id="update-status-container" hidden> 62 <div id="update-status-icon" class="help-page-icon up-to-date"></div> 63 <div id="update-status-message-container"> 64 <div id="update-status-message" i18n-content="updateCheckStarted"> 65 </div> 66 <div id="allowed-connection-types-message" hidden></div> 67 </div> 68 </div> 69 <div id="update-buttons-container"> 70 <div id="update-percentage" hidden></div> 71 <if expr="is_macosx"> 72 <button id="promote" i18n-content="promote" hidden></button> 73 </if> 74 <button id="relaunch" i18n-content="relaunch" hidden></button> 75 <if expr="pp_ifdef('chromeos')"> 76 <button id="relaunch-and-powerwash" 77 i18n-content="relaunchAndPowerwash" hidden> 78 </button> 79 </if> 80 </div> 81 </if> 82 <if expr="pp_ifdef('chromeos')"> 83 <div id="more-info-container"> 84 <section id="channel-changer-container" hidden> 85 <h3 i18n-content="channel"></h3> 86 <select id="channel-changer"> 87 <option value="stable-channel" i18n-content="stable"></option> 88 <option value="beta-channel" i18n-content="beta"></option> 89 <option value="dev-channel" i18n-content="dev"></option> 90 </select> 91 <div id="channel-change-confirmation" hidden></div> 92 </section> 93 <section id="channel-change-page-container" hidden> 94 <h3 i18n-content="channel"></h3> 95 <div id="current-channel"></div> 96 <button id="change-channel" 97 i18n-content="channelChangeButton" disabled> 98 </button> 99 <div id="channel-change-disallowed-icon" 100 class="help-page-icon" hidden> 101 </div> 102 </section> 103 <section> 104 <h3 i18n-content="webkit"></h3> 105 <div i18n-content="webkitVersion" dir="ltr"></div> 106 </section> 107 <section> 108 <h3 i18n-content="jsEngine" dir="ltr"></h3> 109 <div i18n-content="jsEngineVersion"></div> 110 </section> 111 <section> 112 <h3 i18n-content="userAgent"></h3> 113 <div i18n-content="userAgentInfo" dir="ltr"></div> 114 </section> 115 <section> 116 <h3 i18n-content="commandLine"></h3> 117 <div i18n-content="commandLineInfo" dir="ltr"></div> 118 </section> 119 <section id="build-date-container" class="empty"> 120 <h3 i18n-content="buildDate"></h3> 121 <div id="build-date"></div> 122 </section> 123 </div> 124 <button id="more-info-expander" class="link-button" 125 i18n-content="showMoreInfo"> 126 </button> 127 </if> 128 </div> 129 <div id="product-container"> 130 <div i18n-content="productName"></div> 131 <div i18n-content="productCopyright"></div> 132 <div id="product-license"></div> 133 <if expr="pp_ifdef('chromeos')"> 134 <div id="product-os-license"></div> 135 </if> 136 <if expr="pp_ifdef('_google_chrome')"> 137 <div id="product-tos"></div> 138 </if> 139 </div> 140 </div> 141 </body> 142 <script src="chrome://help-frame/strings.js"></script> 143 <script src="chrome://resources/js/i18n_template2.js"></script> 144 </html> 145