| OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 2 <link rel="import" href="class_ref.html"> | 2 <link rel="import" href="class_ref.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 3 |
| 4 <link rel="import" href="nav_bar.html"> | 4 <link rel="import" href="nav_bar.html"> |
| 5 | 5 |
| 6 <polymer-element name="heap-profile" extends="observatory-element"> | 6 <polymer-element name="heap-profile"> |
| 7 <template> | 7 <template> |
| 8 <link rel="stylesheet" href="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
| 9 <style> | 9 <style> |
| 10 .table { | 10 .table { |
| 11 border-collapse: collapse!important; | 11 border-collapse: collapse!important; |
| 12 margin-bottom: 20px | 12 margin-bottom: 20px |
| 13 table-layout: fixed; | 13 table-layout: fixed; |
| 14 } | 14 } |
| 15 .table td:nth-of-type(1) { | 15 .table td:nth-of-type(1) { |
| 16 width: 30%; | 16 width: 30%; |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 </thead> | 203 </thead> |
| 204 <tbody id="classTableBody"> | 204 <tbody id="classTableBody"> |
| 205 </tbody> | 205 </tbody> |
| 206 </table> | 206 </table> |
| 207 <view-footer></view-footer> | 207 <view-footer></view-footer> |
| 208 </div> | 208 </div> |
| 209 </template> | 209 </template> |
| 210 </polymer-element> | 210 </polymer-element> |
| 211 | 211 |
| 212 <script type="application/dart" src="heap_profile.dart"></script> | 212 <script type="application/dart" src="heap_profile.dart"></script> |
| OLD | NEW |