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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/isolate_view.html

Issue 217473004: Minor fix in isolate-view. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_view.html ('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 <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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 [<a on-click="{{ resume }}">resume</a>] 62 [<a on-click="{{ resume }}">resume</a>]
63 </span> 63 </span>
64 </template> 64 </template>
65 65
66 <template if="{{ isolate.running }}"> 66 <template if="{{ isolate.running }}">
67 <strong>running</strong> 67 <strong>running</strong>
68 @ 68 @
69 <function-ref ref="{{ isolate.topFrame['function'] }}"> 69 <function-ref ref="{{ isolate.topFrame['function'] }}">
70 </function-ref> 70 </function-ref>
71 (<script-ref ref="{{ isolate.topFrame['script'] }}" 71 (<script-ref ref="{{ isolate.topFrame['script'] }}"
72 line="{{ isolate.topFrame['line'] }}"></script-ref>) 72 pos="{{ isolate.topFrame['tokenPos'] }}">
73 </script-ref>)
73 </template> 74 </template>
74 75
75 <template if="{{ isolate.idle }}"> 76 <template if="{{ isolate.idle }}">
76 <strong>idle</strong> 77 <strong>idle</strong>
77 </template> 78 </template>
78 </div> 79 </div>
79 </div> 80 </div>
80 </div> 81 </div>
81 </div> 82 </div>
82 83
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 <hr> 209 <hr>
209 210
210 <div class="content"> 211 <div class="content">
211 <eval-box callback="{{ eval }}"></eval-box> 212 <eval-box callback="{{ eval }}"></eval-box>
212 </div> 213 </div>
213 <br><br><br><br> 214 <br><br><br><br>
214 <br><br><br><br> 215 <br><br><br><br>
215 </template> 216 </template>
216 <script type="application/dart" src="isolate_view.dart"></script> 217 <script type="application/dart" src="isolate_view.dart"></script>
217 </polymer-element> 218 </polymer-element>
OLDNEW
« no previous file with comments | « runtime/bin/vmservice/client/deployed/web/packages/observatory/src/elements/isolate_view.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698