| 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="action_link.html"> | 2 <link rel="import" href="action_link.html"> |
| 3 <link rel="import" href="function_ref.html"> | 3 <link rel="import" href="function_ref.html"> |
| 4 <link rel="import" href="isolate_ref.html"> | 4 <link rel="import" href="isolate_ref.html"> |
| 5 <link rel="import" href="observatory_element.html"> | 5 <link rel="import" href="observatory_element.html"> |
| 6 <link rel="import" href="script_inset.html"> | 6 <link rel="import" href="script_inset.html"> |
| 7 <link rel="import" href="script_ref.html"> | 7 <link rel="import" href="script_ref.html"> |
| 8 <polymer-element name="isolate-summary" extends="observatory-element"> | 8 <polymer-element name="isolate-summary" extends="observatory-element"> |
| 9 <template> | 9 <template> |
| 10 <link rel="stylesheet" href="css/shared.css"> | 10 <link rel="stylesheet" href="css/shared.css"> |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 height: 200px; | 221 height: 200px; |
| 222 } | 222 } |
| 223 .chart-legend-host { | 223 .chart-legend-host { |
| 224 max-height: 200px; | 224 max-height: 200px; |
| 225 overflow-x: auto; | 225 overflow-x: auto; |
| 226 overflow-y: auto; | 226 overflow-y: auto; |
| 227 } | 227 } |
| 228 </style> | 228 </style> |
| 229 <div class="chart-wrapper" id="isolate-counter-chart"> | 229 <div class="chart-wrapper" id="isolate-counter-chart"> |
| 230 <div class="chart-host-wrapper"> | 230 <div class="chart-host-wrapper"> |
| 231 <div class="chart-host"></div> | 231 <div class="chart-host" id="isolate-counter-chart-host"></div> |
| 232 <div class="chart-legend-host"></div> | 232 <div class="chart-legend-host" id="isolate-counter-chart-legend-host">
</div> |
| 233 </div> | 233 </div> |
| 234 </div> | 234 </div> |
| 235 </template> | 235 </template> |
| 236 </polymer-element> | 236 </polymer-element> |
| 237 | 237 |
| 238 <script type="application/dart" src="isolate_summary.dart"></script> | 238 <script type="application/dart" src="isolate_summary.dart"></script> |
| OLD | NEW |