| 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="curly_block.html"> | 3 <link rel="import" href="curly_block.html"> |
| 4 <link rel="import" href="eval_box.html"> | 4 <link rel="import" href="eval_box.html"> |
| 5 <link rel="import" href="function_ref.html"> | 5 <link rel="import" href="function_ref.html"> |
| 6 <link rel="import" href="isolate_summary.html"> | 6 <link rel="import" href="isolate_summary.html"> |
| 7 <link rel="import" href="library_ref.html"> | 7 <link rel="import" href="library_ref.html"> |
| 8 <link rel="import" href="nav_bar.html"> | 8 <link rel="import" href="nav_bar.html"> |
| 9 <link rel="import" href="observatory_element.html"> | 9 <link rel="import" href="observatory_element.html"> |
| 10 <link rel="import" href="script_inset.html"> | 10 <link rel="import" href="script_inset.html"> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 </nav-bar> | 33 </nav-bar> |
| 34 | 34 |
| 35 <div class="content"> | 35 <div class="content"> |
| 36 <h1>isolate '{{ isolate.name }}'</h1> | 36 <h1>isolate '{{ isolate.name }}'</h1> |
| 37 </div> | 37 </div> |
| 38 | 38 |
| 39 <br> | 39 <br> |
| 40 <div class="flex-row"> | 40 <div class="flex-row"> |
| 41 <div class="flex-item-10-percent"> | 41 <div class="flex-item-10-percent"> |
| 42 </div> | 42 </div> |
| 43 <div class="flex-item-20-percent"> | 43 <div class="flex-item-30-percent"> |
| 44 <isolate-run-state isolate="{{ isolate }}"></isolate-run-state> | 44 <isolate-run-state isolate="{{ isolate }}"></isolate-run-state> |
| 45 </div> | 45 </div> |
| 46 <div class="flex-item-60-percent"> | 46 <div class="flex-item-50-percent"> |
| 47 <isolate-location isolate="{{ isolate }}"></isolate-location> | 47 <isolate-location isolate="{{ isolate }}"></isolate-location> |
| 48 </div> | 48 </div> |
| 49 <div class="flex-item-10-percent"> | 49 <div class="flex-item-10-percent"> |
| 50 </div> | 50 </div> |
| 51 </div> | 51 </div> |
| 52 <br> | 52 <br> |
| 53 | 53 |
| 54 <template if="{{ isolate.topFrame != null }}"> | 54 <template if="{{ isolate.topFrame != null }}"> |
| 55 <br> | 55 <br> |
| 56 <script-inset script="{{ isolate.topFrame['script'] }}" | 56 <script-inset script="{{ isolate.topFrame['script'] }}" |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 136 |
| 137 <div class="content"> | 137 <div class="content"> |
| 138 <eval-box callback="{{ eval }}"></eval-box> | 138 <eval-box callback="{{ eval }}"></eval-box> |
| 139 </div> | 139 </div> |
| 140 <br><br><br><br> | 140 <br><br><br><br> |
| 141 <br><br><br><br> | 141 <br><br><br><br> |
| 142 </template> | 142 </template> |
| 143 </polymer-element> | 143 </polymer-element> |
| 144 | 144 |
| 145 <script type="application/dart" src="isolate_view.dart"></script> | 145 <script type="application/dart" src="isolate_view.dart"></script> |
| OLD | NEW |