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

Side by Side Diff: runtime/observatory/lib/src/elements/isolate_summary.html

Issue 1401113004: Fix bad isolate summary charts (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « runtime/observatory/lib/src/elements/isolate_summary.dart ('k') | 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 <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
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>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/isolate_summary.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698