| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="curly_block.html"> | 2 <link rel="import" href="curly_block.html"> |
| 3 <link rel="import" href="eval_box.html"> | 3 <link rel="import" href="eval_box.html"> |
| 4 <link rel="import" href="function_ref.html"> | 4 <link rel="import" href="function_ref.html"> |
| 5 <link rel="import" href="library_ref.html"> | 5 <link rel="import" href="library_ref.html"> |
| 6 <link rel="import" href="nav_bar.html"> | 6 <link rel="import" href="nav_bar.html"> |
| 7 <link rel="import" href="observatory_element.html"> | 7 <link rel="import" href="observatory_element.html"> |
| 8 <link rel="import" href="script_inset.html"> | 8 <link rel="import" href="script_inset.html"> |
| 9 <link rel="import" href="script_ref.html"> | 9 <link rel="import" href="script_ref.html"> |
| 10 </head> | 10 </head> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 .memberName, .memberValue { | 27 .memberName, .memberValue { |
| 28 display: table-cell; | 28 display: table-cell; |
| 29 vertical-align: top; | 29 vertical-align: top; |
| 30 padding: 3px 0 3px 1em; | 30 padding: 3px 0 3px 1em; |
| 31 font: 400 14px 'Montserrat', sans-serif; | 31 font: 400 14px 'Montserrat', sans-serif; |
| 32 } | 32 } |
| 33 .sourceInset { | 33 .sourceInset { |
| 34 padding-left: 15%; | 34 padding-left: 15%; |
| 35 padding-right: 15%; | 35 padding-right: 15%; |
| 36 } | 36 } |
| 37 .miniProfileChart { |
| 38 width: 80%; |
| 39 } |
| 37 </style> | 40 </style> |
| 38 | 41 |
| 39 <nav-bar> | 42 <nav-bar> |
| 40 <top-nav-menu></top-nav-menu> | 43 <top-nav-menu></top-nav-menu> |
| 41 <isolate-nav-menu isolate="{{ isolate }}" last="{{ true }}"> | 44 <isolate-nav-menu isolate="{{ isolate }}" last="{{ true }}"> |
| 42 </isolate-nav-menu> | 45 </isolate-nav-menu> |
| 43 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 46 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 44 </nav-bar> | 47 </nav-bar> |
| 45 | 48 |
| 46 <div class="content"> | 49 <div class="content"> |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 <div class="memberValue"> | 199 <div class="memberValue"> |
| 197 See <a href="{{ isolate.relativeHashLink('heapmap') }}">heap map</a> | 200 See <a href="{{ isolate.relativeHashLink('heapmap') }}">heap map</a> |
| 198 </div> | 201 </div> |
| 199 </div> | 202 </div> |
| 200 </div> | 203 </div> |
| 201 </div> | 204 </div> |
| 202 | 205 |
| 203 <hr> | 206 <hr> |
| 204 | 207 |
| 205 <div class="content"> | 208 <div class="content"> |
| 206 <div id="tagProfileChart" class="col-md-8" style="height: 400px"></div> | 209 <div class="memberValue">Isolate execution</div> |
| 210 <template repeat="{{ key in isolate.counters.keys }}"> |
| 211 <div class="memberValue">{{ key }} ({{ isolate.counters[key] }})</div> |
| 212 </template> |
| 213 </div> |
| 214 |
| 215 <div class="content"> |
| 216 <div id="tagProfileChart" class="miniProfileChart" style="height: 600px"><
/div> |
| 207 </div> | 217 </div> |
| 208 | 218 |
| 209 <hr> | 219 <hr> |
| 210 | 220 |
| 211 <div class="content"> | 221 <div class="content"> |
| 212 <eval-box callback="{{ eval }}"></eval-box> | 222 <eval-box callback="{{ eval }}"></eval-box> |
| 213 </div> | 223 </div> |
| 214 <br><br><br><br> | 224 <br><br><br><br> |
| 215 <br><br><br><br> | 225 <br><br><br><br> |
| 216 </template> | 226 </template> |
| 217 <script type="application/dart" src="isolate_view.dart"></script> | 227 <script type="application/dart" src="isolate_view.dart"></script> |
| 218 </polymer-element> | 228 </polymer-element> |
| OLD | NEW |