OLD | NEW |
---|---|
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 <meta charset="utf-8"> | 8 <meta charset="utf-8"> |
9 <title>About Memory</title> | 9 <title>About Memory</title> |
10 <link rel="stylesheet" href="chrome://memory-redirect/about_memory.css"> | 10 <link rel="stylesheet" href="chrome://memory-redirect/about_memory.css"> |
11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
Dan Beam
2014/12/10 19:49:24
shared stylesheets above page-specific ones
xdai1
2014/12/11 02:59:21
Done.
| |
11 <style> | 12 <style> |
12 body { | |
13 font-family: Helvetica, sans-serif; | |
14 } | |
15 div#header select { | |
16 font-family: Helvetica, sans-serif; | |
17 } | |
18 div.otherbrowsers { | |
19 font-family: Helvetica, sans-serif; | |
20 } | |
21 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(1), | 13 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(1), |
22 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(6), | 14 table.list#browserComparison tr:not([class*='firstRow']) > *:nth-child(6), |
23 table.list#browserComparison tr.firstRow th:nth-child(1) { | 15 table.list#browserComparison tr.firstRow th:nth-child(1) { |
24 border-right: 1px solid #b5c6de; | 16 border-right: 1px solid #b5c6de; |
25 } | 17 } |
26 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(2), | 18 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(2), |
27 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(7), | 19 table.list#memoryDetails tr:not([class*='firstRow']) > *:nth-child(7), |
28 table.list#memoryDetails tr.firstRow th:nth-child(2) { | 20 table.list#memoryDetails tr.firstRow th:nth-child(2) { |
29 border-right: 1px solid #b5c6de; | 21 border-right: 1px solid #b5c6de; |
30 } | 22 } |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
254 </td> | 246 </td> |
255 </tr> | 247 </tr> |
256 </table> | 248 </table> |
257 <div class="otherbrowsers"> | 249 <div class="otherbrowsers"> |
258 (Note: Due to memory sharing between processes, summing memory usage doe s not give total memory usage.) | 250 (Note: Due to memory sharing between processes, summing memory usage doe s not give total memory usage.) |
259 </div> | 251 </div> |
260 </div> | 252 </div> |
261 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 253 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
262 </body> | 254 </body> |
263 </html> | 255 </html> |
OLD | NEW |