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

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

Issue 82703002: Fix HTML syntax errors in about_memory_linux.html (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <if expr="is_android"> 9 <if expr="is_android">
10 <meta name="viewport" content="width=device-width"> 10 <meta name="viewport" content="width=device-width">
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 <tr jsselect="browzr_data"> 151 <tr jsselect="browzr_data">
152 <td class="pid"> 152 <td class="pid">
153 <span class="th" jscontent="pid"></span> 153 <span class="th" jscontent="pid"></span>
154 </td> 154 </td>
155 <td class="name"> 155 <td class="name">
156 <div> 156 <div>
157 Browser 157 Browser
158 </div> 158 </div>
159 </td> 159 </td>
160 <td class="number"> 160 <td class="number">
161 <span class="th" jseval="addToSum("tot_ws_priv", $this.ws_priv)" jsc ontent="formatNumber(ws_priv)"></span><span class="k">k</span> 161 <span class="th" jseval="addToSum('tot_ws_priv', $this.ws_priv)" jsc ontent="formatNumber(ws_priv)"></span><span class="k">k</span>
162 </td> 162 </td>
163 <td class="number"> 163 <td class="number">
164 <span class="th" jscontent="formatNumber(ws_shared)"></span><span cl ass="k">k</span> 164 <span class="th" jscontent="formatNumber(ws_shared)"></span><span cl ass="k">k</span>
165 </td> 165 </td>
166 </tr> 166 </tr>
167 <tr jsselect="child_data"> 167 <tr jsselect="child_data">
168 <td class="pid"> 168 <td class="pid">
169 <span class="th" jscontent="pid"></span> 169 <span class="th" jscontent="pid"></span>
170 </td> 170 </td>
171 <td class="name"> 171 <td class="name">
172 <div jscontent="child_name"></div> 172 <div jscontent="child_name"></div>
173 <div jsselect="titles"> 173 <div jsselect="titles">
174 <span jscontent="$this"></span><br> 174 <span jscontent="$this"></span><br>
175 </div> 175 </div>
176 </td> 176 </td>
177 <td class="number"> 177 <td class="number">
178 <span class="th" jseval="addToSum("tot_ws_priv", $this.ws_priv)" jsc ontent="formatNumber(ws_priv)"></span><span class="k">k</span> 178 <span class="th" jseval="addToSum('tot_ws_priv', $this.ws_priv)" jsc ontent="formatNumber(ws_priv)"></span><span class="k">k</span>
179 </td> 179 </td>
180 <td class="number"> 180 <td class="number">
181 <span class="th" jscontent="formatNumber(ws_shared)"></span><span cl ass="k">k</span> 181 <span class="th" jscontent="formatNumber(ws_shared)"></span><span cl ass="k">k</span>
182 </td> 182 </td>
183 </tr> 183 </tr>
184 <tr class="total doNotFilter"> 184 <tr class="total doNotFilter">
185 <td class="pid"> 185 <td class="pid">
186 </td> 186 </td>
187 <td class="name"> 187 <td class="name">
188 &Sigma; 188 &Sigma;
(...skipping 12 matching lines...) Expand all
201 </tr> 201 </tr>
202 </table> 202 </table>
203 203
204 <div class="otherbrowsers">(The memory usage of our renderer processes is slightly less accurate when they are sandboxed.)</div> 204 <div class="otherbrowsers">(The memory usage of our renderer processes is slightly less accurate when they are sandboxed.)</div>
205 205
206 </div> 206 </div>
207 <script src="chrome://resources/js/i18n_template2.js"></script> 207 <script src="chrome://resources/js/i18n_template2.js"></script>
208 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 208 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
209 </body> 209 </body>
210 </html> 210 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698