| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="function_ref.html"> | 2 <link rel="import" href="function_ref.html"> |
| 3 <link rel="import" href="isolate_ref.html"> | 3 <link rel="import" href="isolate_ref.html"> |
| 4 <link rel="import" href="observatory_element.html"> | 4 <link rel="import" href="observatory_element.html"> |
| 5 <link rel="import" href="script_inset.html"> | 5 <link rel="import" href="script_inset.html"> |
| 6 <link rel="import" href="script_ref.html"> | 6 <link rel="import" href="script_ref.html"> |
| 7 </head> | 7 </head> |
| 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="packages/observatory/src/elements/css/shared.cs
s"> |
| 11 <style> | 11 <style> |
| 12 .counters { | 12 .counters { |
| 13 display: flex; | 13 display: flex; |
| 14 flex-direction: row; | 14 flex-direction: row; |
| 15 justify-content: center; | 15 justify-content: center; |
| 16 } | 16 } |
| 17 .counter { | 17 .counter { |
| 18 margin: 10px; | 18 margin: 10px; |
| 19 } | 19 } |
| 20 </style> | 20 </style> |
| 21 <div class="flex-row"> | 21 <div class="flex-row"> |
| 22 <div class="flex-item-fixed-1-12"><img src="img/isolate_icon.png"></div> | 22 <div class="flex-item-fixed-1-12"><img src="packages/observatory/src/eleme
nts/img/isolate_icon.png"></div> |
| 23 <div class="flex-item-fixed-1-12">{{ isolate.mainPort }}</div> | 23 <div class="flex-item-fixed-1-12">{{ isolate.mainPort }}</div> |
| 24 <div class="flex-item-fixed-4-12"> | 24 <div class="flex-item-fixed-4-12"> |
| 25 <div class="flex-row"> | 25 <div class="flex-row"> |
| 26 <isolate-ref ref="{{ isolate }}"></isolate-ref> | 26 <isolate-ref ref="{{ isolate }}"></isolate-ref> |
| 27 </div> | 27 </div> |
| 28 <div class="flex-row"> | 28 <div class="flex-row"> |
| 29 <small> | 29 <small> |
| 30 (<a href="{{ isolate.rootLib.hashLink }}">library</a>) | 30 (<a href="{{ isolate.rootLib.hashLink }}">library</a>) |
| 31 (<a href="{{ isolate.relativeHashLink('debug/breakpoints') }}">break
points</a>) | 31 (<a href="{{ isolate.relativeHashLink('debug/breakpoints') }}">break
points</a>) |
| 32 (<a href="{{ isolate.relativeHashLink('profile') }}">profile</a>) | 32 (<a href="{{ isolate.relativeHashLink('profile') }}">profile</a>) |
| (...skipping 28 matching lines...) Expand all Loading... |
| 61 <script-inset script="{{ isolate.topFrame['script'] }}" | 61 <script-inset script="{{ isolate.topFrame['script'] }}" |
| 62 pos="{{ isolate.topFrame['tokenPos'] }}"> | 62 pos="{{ isolate.topFrame['tokenPos'] }}"> |
| 63 <function-ref ref="{{ isolate.topFrame['function'] }}"></function-ref> | 63 <function-ref ref="{{ isolate.topFrame['function'] }}"></function-ref> |
| 64 (<script-ref ref="{{ isolate.topFrame['script'] }}" | 64 (<script-ref ref="{{ isolate.topFrame['script'] }}" |
| 65 pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>) | 65 pos="{{ isolate.topFrame['tokenPos'] }}"></script-ref>) |
| 66 </script-inset> | 66 </script-inset> |
| 67 </template> | 67 </template> |
| 68 </template> | 68 </template> |
| 69 <script type="application/dart" src="isolate_summary.dart"></script> | 69 <script type="application/dart" src="isolate_summary.dart"></script> |
| 70 </polymer-element> | 70 </polymer-element> |
| OLD | NEW |