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

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

Issue 10828382: Cleanup: Don't close single tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. 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 2
3 <!-- 3 <!--
4 about:memory template page 4 about:memory template page
5 --> 5 -->
6 <html id="t"> 6 <html id="t">
7 <head> 7 <head>
8 <title>About Memory</title> 8 <title>About Memory</title>
9 <link rel="stylesheet" href="shared/css/about_memory.css"> 9 <link rel="stylesheet" href="shared/css/about_memory.css">
10 <style> 10 <style>
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 For <span jscontent="current_browser_name"></span>, processes used 57 For <span jscontent="current_browser_name"></span>, processes used
58 to to display diagnostics information (such as this 58 to to display diagnostics information (such as this
59 "about:memory") are excluded. 59 "about:memory") are excluded.
60 </p> 60 </p>
61 </div> 61 </div>
62 </div> 62 </div>
63 </h2> 63 </h2>
64 64
65 <table class='list' id='browserComparison'> 65 <table class='list' id='browserComparison'>
66 <colgroup> 66 <colgroup>
67 <col class='name' /> 67 <col class='name'>
68 <col class='number' /> 68 <col class='number'>
69 <col class='number' /> 69 <col class='number'>
70 <col class='number' /> 70 <col class='number'>
71 <col class='number' /> 71 <col class='number'>
72 <col class='number' /> 72 <col class='number'>
73 </colgroup> 73 </colgroup>
74 <tr class='firstRow doNotFilter'> 74 <tr class='firstRow doNotFilter'>
75 <th> 75 <th>
76 </th> 76 </th>
77 <th colspan='3'> 77 <th colspan='3'>
78 Memory 78 Memory
79 <div class='help'> 79 <div class='help'>
80 <div> 80 <div>
81 <p> 81 <p>
82 <strong>Memory</strong> 82 <strong>Memory</strong>
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 <span class='th' jscontent="formatNumber(comm_map)"></span> 176 <span class='th' jscontent="formatNumber(comm_map)"></span>
177 <span class='k'>k</span> 177 <span class='k'>k</span>
178 </td> 178 </td>
179 </tr> 179 </tr>
180 </table> 180 </table>
181 <div class=otherbrowsers jsdisplay="browsers.length == 1"> 181 <div class=otherbrowsers jsdisplay="browsers.length == 1">
182 Note: If other browsers (e.g. IE, Firefox, Safari) are running, 182 Note: If other browsers (e.g. IE, Firefox, Safari) are running,
183 I'll show their memory details here. 183 I'll show their memory details here.
184 </div> 184 </div>
185 185
186 <br /><br /><br /> 186 <br><br><br>
187 187
188 <h2> 188 <h2>
189 Processes 189 Processes
190 <div class='help'> 190 <div class='help'>
191 <div> 191 <div>
192 <p> 192 <p>
193 Details of memory usage for each of 193 Details of memory usage for each of
194 <span jscontent="current_browser_name"></span>'s processes. 194 <span jscontent="current_browser_name"></span>'s processes.
195 </p> 195 </p>
196 </div> 196 </div>
197 </div> 197 </div>
198 </h2> 198 </h2>
199 199
200 <table class='list' id='memoryDetails'> 200 <table class='list' id='memoryDetails'>
201 <colgroup> 201 <colgroup>
202 <col class='pid' /> 202 <col class='pid'>
203 <col class='name' /> 203 <col class='name'>
204 <col class='number' /> 204 <col class='number'>
205 <col class='number' /> 205 <col class='number'>
206 <col class='number' /> 206 <col class='number'>
207 <col class='number' /> 207 <col class='number'>
208 <col class='number' /> 208 <col class='number'>
209 </colgroup> 209 </colgroup>
210 <tr class='firstRow doNotFilter'> 210 <tr class='firstRow doNotFilter'>
211 <th> 211 <th>
212 </th> 212 </th>
213 <th> 213 <th>
214 </th> 214 </th>
215 <th colspan='3'> 215 <th colspan='3'>
216 Memory 216 Memory
217 </th> 217 </th>
218 <th colspan='2'> 218 <th colspan='2'>
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 <tr class='noResults'> 345 <tr class='noResults'>
346 <td colspan='99'> 346 <td colspan='99'>
347 No results found. 347 No results found.
348 </td> 348 </td>
349 </tr> 349 </tr>
350 </table> 350 </table>
351 </div> 351 </div>
352 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 352 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
353 </body> 353 </body>
354 </html> 354 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698