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

Side by Side Diff: chrome/browser/resources/feedback/html/sys_info.html

Issue 2403503003: Optimize the table creation in the Sys Info page of the feedback app (Closed)
Patch Set: Fix js styles for presubmit Created 4 years, 2 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
OLDNEW
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/feedback/css/sys_info.css ('k') | chrome/browser/resources/feedback/js/feedback.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698