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

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

Issue 10823214: Add a chrome://nacl page to show if NaCl is enabled and if PNaCl is installed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: handle disable_nacl=1 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
(Empty)
1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;">
3 <head>
4 <style>
James Hawkins 2012/08/09 17:16:55 No styles in the html.
jvoung (off chromium) 2012/08/09 20:03:35 Sorry, was just following the pattern of other abo
5 .key {
6 font-weight: bold;
7 }
8
9 .value {
10 margin-left: 15px;
11 }
12 </style>
13 </head>
14 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
15 <div id="loading-message" i18n-content="loadingMessage">LOADING_MESSAGE</div>
James Hawkins 2012/08/09 17:16:55 s/LOADING_MESSAGE// Remove all inline text conten
jvoung (off chromium) 2012/08/09 20:03:35 Done.
16 <div id="body-container" style="visibility:hidden">
James Hawkins 2012/08/09 17:16:55 Use the hidden attribute instead.
jvoung (off chromium) 2012/08/09 20:03:35 Done.
17 <div id="header"><h1 i18n-content="naclLongTitle">ABOUT_NACL</h1></div>
James Hawkins 2012/08/09 17:16:55 nit: <h1> must be dropped down and indented.
jvoung (off chromium) 2012/08/09 20:03:35 Done.
18
James Hawkins 2012/08/09 17:16:55 nit: Remove blank line.
jvoung (off chromium) 2012/08/09 20:03:35 Done.
19 <div id="naclInfoTemplate">
20 <table cellpadding="2" cellspacing="0" border="0">
James Hawkins 2012/08/09 17:16:55 Don't use table for non-tabular data.
jvoung (off chromium) 2012/08/09 20:03:35 Done.
21 <tr jsselect="naclInfo">
22 <td><span dir="ltr" jscontent="key" class="key">KEY</span></td>
23 <td><span dir="ltr" jscontent="value" class="value">VALUE</span></td>
24 </tr>
25 </table>
26 </div>
27 </div>
28 <script src="chrome://nacl/about_nacl.js"></script>
29 <script src="chrome://nacl/strings.js"></script>
30 <script src="chrome://resources/js/i18n_template.js"></script>
31 <script src="chrome://resources/js/i18n_process.js"></script>
32 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698