| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
| 3 <head> | 3 <head> |
| 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 5 <title i18n-content="sysinfoPageTitle"></title> | 5 <title i18n-content="sysinfoPageTitle"></title> |
| 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 7 <link rel="stylesheet" href="chrome://resources/css/spinner.css"> |
| 7 <link rel="stylesheet" href="../../about_sys/about_sys.css"> | 8 <link rel="stylesheet" href="../../about_sys/about_sys.css"> |
| 9 <link rel="stylesheet" href="../css/sys_info.css"> |
| 8 <script src="chrome://resources/js/util.js"></script> | 10 <script src="chrome://resources/js/util.js"></script> |
| 9 <script src="chrome://resources/js/i18n_template_no_process.js"></script> | 11 <script src="chrome://resources/js/i18n_template_no_process.js"></script> |
| 10 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 12 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 11 <script src="../js/sys_info.js"></script> | 13 <script src="../js/sys_info.js"></script> |
| 12 <style> | |
| 13 html, body { | |
| 14 overflow: visible; | |
| 15 } | |
| 16 </style> | |
| 17 </head> | 14 </head> |
| 18 <body> | 15 <body> |
| 19 <div id="header"> | 16 <div id="header"> |
| 20 <h1 id="title" i18n-content="sysinfoPageTitle"></h1> | 17 <h1 id="title" i18n-content="sysinfoPageTitle"></h1> |
| 21 <p id="description" i18n-content="sysinfoPageDescription"></p> | 18 <p id="description" i18n-content="sysinfoPageDescription"></p> |
| 22 </div> | 19 </div> |
| 23 <div id="content"> | 20 <div id="content"> |
| 24 <h2 id="tableTitle" i18n-content="sysinfoPageTableTitle"></h2> | 21 <h2 id="tableTitle" i18n-content="sysinfoPageTableTitle"></h2> |
| 25 <div id="anchor"></div> | 22 <div id="anchor"></div> |
| 26 <button id="expandAllBtn" class="global-button" i18n-content="sysinfoPageE
xpandAllBtn"></button> | 23 <button id="expandAllBtn" class="global-button" |
| 27 <button id="collapseAllBtn" class="global-button" i18n-content="sysinfoPag
eCollapseAllBtn"></button> | 24 i18n-content="sysinfoPageExpandAllBtn"></button> |
| 28 <p id="status" i18n-content="sysinfoPageStatusLoading"></p> | 25 <button id="collapseAllBtn" class="global-button" |
| 26 i18n-content="sysinfoPageCollapseAllBtn"></button> |
| 27 <div id="spinner-container"> |
| 28 <div class="inline-spinner"></div> |
| 29 <p id="status" i18n-content="sysinfoPageStatusLoading"></p> |
| 30 </div> |
| 29 <table class="list" id="detailsTable"></table> | 31 <table class="list" id="detailsTable"></table> |
| 30 </div> | 32 </div> |
| 31 </body> | 33 </body> |
| 32 </html> | 34 </html> |
| OLD | NEW |