Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: chrome/browser/resources/help/help.html

Issue 10830051: Restore <img> src values now that grit converts these. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ensure ThemeSource is loaded. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="helpTitle"></title> 5 <title i18n-content="helpTitle"></title>
6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
7 <link rel="stylesheet" href="../uber/uber_shared.css"> 7 <link rel="stylesheet" href="../uber/uber_shared.css">
8 <link rel="stylesheet" href="help.css"> 8 <link rel="stylesheet" href="help.css">
9 <script src="chrome://resources/js/cr.js"></script> 9 <script src="chrome://resources/js/cr.js"></script>
10 <script src="chrome://resources/js/load_time_data.js"></script> 10 <script src="chrome://resources/js/load_time_data.js"></script>
11 <script src="chrome://resources/js/util.js"></script> 11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://help-frame/help.js"></script> 12 <script src="chrome://help-frame/help.js"></script>
13 </head> 13 </head>
14 <body class="uber-frame" 14 <body class="uber-frame"
15 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 15 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
16 <div class="page"> 16 <div class="page">
17 <header> 17 <header>
18 <h1 i18n-content="aboutTitle"></h1> 18 <h1 i18n-content="aboutTitle"></h1>
19 </header> 19 </header>
20 <div id="about-container"> 20 <div id="about-container">
21 <!-- TODO: Revert back to src= once http://crbug.com/135179 is fixed --> 21 <img src="chrome://theme/IDR_PRODUCT_LOGO_32">
22 <img id="help-product-logo">
23 <div id="product-description"> 22 <div id="product-description">
24 <h2 i18n-content="aboutProductTitle"></h2> 23 <h2 i18n-content="aboutProductTitle"></h2>
25 <span i18n-content="aboutProductDescription"></span> 24 <span i18n-content="aboutProductDescription"></span>
26 </div> 25 </div>
27 </div> 26 </div>
28 <div id="help-container"> 27 <div id="help-container">
29 <button id="get-help" i18n-content="getHelpWithChrome"></button> 28 <button id="get-help" i18n-content="getHelpWithChrome"></button>
30 <button id="report-issue" i18n-content="reportAnIssue"></button> 29 <button id="report-issue" i18n-content="reportAnIssue"></button>
31 </div> 30 </div>
32 <div id="version-container"> 31 <div id="version-container">
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 </if> 101 </if>
103 <if expr="pp_ifdef('_google_chrome')"> 102 <if expr="pp_ifdef('_google_chrome')">
104 <div id="product-tos"></div> 103 <div id="product-tos"></div>
105 </if> 104 </if>
106 </div> 105 </div>
107 </div> 106 </div>
108 </body> 107 </body>
109 <script src="chrome://help-frame/strings.js"></script> 108 <script src="chrome://help-frame/strings.js"></script>
110 <script src="chrome://resources/js/i18n_template2.js"></script> 109 <script src="chrome://resources/js/i18n_template2.js"></script>
111 </html> 110 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698