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

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: make list alloc more apparent 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 <style> 4 <style>
5 .key { 5 .key {
6 font-weight: bold; 6 font-weight: bold;
7 } 7 }
8 8
9 .value { 9 .value {
10 margin-left: 15px; 10 margin-left: 15px;
11 } 11 }
12 </style> 12 </style>
13 </head> 13 </head>
14 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 14 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
15 <div id="loading-message" i18n-content="loadingMessage">LOADING_MESSAGE</div> 15 <div id="loading-message" i18n-content="loadingMessage">LOADING_MESSAGE</div>
16 <div id="body-container" style="visibility:hidden"> 16 <div id="body-container" style="visibility:hidden">
17 <div id="header"><h1 i18n-content="flashLongTitle">ABOUT_FLASH</h1></div> 17 <div id="header"><h1 i18n-content="naclLongTitle">ABOUT_NACL</h1></div>
18 18
19 <div id="flashInfoTemplate"> 19 <div id="naclInfoTemplate">
20 <table cellpadding="2" cellspacing="0" border="0"> 20 <table cellpadding="2" cellspacing="0" border="0">
21 <tr jsselect="flashInfo"> 21 <tr jsselect="naclInfo">
22 <td><span dir="ltr" jscontent="key" class="key">KEY</span></td> 22 <td><span dir="ltr" jscontent="key" class="key">KEY</span></td>
23 <td><span dir="ltr" jscontent="value" class="value">VALUE</span></td> 23 <td><span dir="ltr" jscontent="value" class="value">VALUE</span></td>
24 </tr> 24 </tr>
25 </table> 25 </table>
26 </div> 26 </div>
27 </div> 27 </div>
28 <script src="chrome://flash/about_flash.js"></script> 28 <script src="chrome://nacl/about_nacl.js"></script>
29 <script src="chrome://flash/strings.js"></script> 29 <script src="chrome://nacl/strings.js"></script>
30 <script src="chrome://resources/js/i18n_template.js"></script> 30 <script src="chrome://resources/js/i18n_template.js"></script>
31 <script src="chrome://resources/js/i18n_process.js"></script> 31 <script src="chrome://resources/js/i18n_process.js"></script>
32 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 32 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
33 </body> 33 </body>
34 </html> 34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698