Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
|
Aaron Boodman
2012/06/16 02:21:19
License header. Note that it must go after the doc
Yoyo Zhou
2012/06/18 19:39:38
Not sure why, but almost all the html webui files
| |
| 2 <html i18n-values="dir:textdirection;" class="loading"> | |
|
Aaron Boodman
2012/06/16 02:21:19
The loading class doesn't appear to be used anywhe
Yoyo Zhou
2012/06/18 19:39:38
Removed.
| |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <link rel="stylesheet" href="extension_info.css"> | |
| 6 | |
| 7 <script src="chrome://resources/js/cr.js"></script> | |
| 8 <script src="chrome://resources/js/load_time_data.js"></script> | |
| 9 <script src="chrome://resources/js/util.js"></script> | |
| 10 | |
| 11 <script src="chrome://extension-info/extension_info.js"></script> | |
| 12 </head> | |
| 13 | |
| 14 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | |
|
Aaron Boodman
2012/06/16 02:21:19
Is this used? If so, it seems like the font declar
Yoyo Zhou
2012/06/18 19:39:38
Apparently not.
| |
| 15 | |
| 16 <div id="extension-item"> | |
| 17 <div id="extension-details"> | |
| 18 <div id="extension-title-running"></div> | |
| 19 <div> | |
| 20 <span id="extension-last-updated" i18n-content="lastUpdated"></span> | |
| 21 <span id="extension-update-time"></span> | |
| 22 </div> | |
| 23 <p id="extension-description"></p> | |
| 24 </div> | |
| 25 </div> | |
| 26 | |
| 27 <script src="chrome://extension-info/strings.js"></script> | |
| 28 <script src="chrome://resources/js/i18n_template2.js"></script> | |
| 29 </body> | |
| 30 </html> | |
| OLD | NEW |