| OLD | NEW |
| 1 <head> | 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"> |
| 11 <link rel="import" href="script_ref.html"> | 11 <link rel="import" href="script_ref.html"> |
| 12 </head> | 12 |
| 13 <polymer-element name="isolate-view" extends="observatory-element"> | 13 <polymer-element name="isolate-view" extends="observatory-element"> |
| 14 <template> | 14 <template> |
| 15 <link rel="stylesheet" href="css/shared.css"> | 15 <link rel="stylesheet" href="css/shared.css"> |
| 16 <style> | 16 <style> |
| 17 .sourceInset { | 17 .sourceInset { |
| 18 padding-left: 15%; | 18 padding-left: 15%; |
| 19 padding-right: 15%; | 19 padding-right: 15%; |
| 20 } | 20 } |
| 21 .miniProfileChart { | 21 .miniProfileChart { |
| 22 width: 80%; | 22 width: 80%; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 </div> | 131 </div> |
| 132 | 132 |
| 133 <hr> | 133 <hr> |
| 134 | 134 |
| 135 <div class="content"> | 135 <div class="content"> |
| 136 <eval-box callback="{{ eval }}"></eval-box> | 136 <eval-box callback="{{ eval }}"></eval-box> |
| 137 </div> | 137 </div> |
| 138 <br><br><br><br> | 138 <br><br><br><br> |
| 139 <br><br><br><br> | 139 <br><br><br><br> |
| 140 </template> | 140 </template> |
| 141 <script type="application/dart" src="isolate_view.dart"></script> | |
| 142 </polymer-element> | 141 </polymer-element> |
| 142 |
| 143 <script type="application/dart" src="isolate_view.dart"></script> |
| OLD | NEW |