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

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index_devtools.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
OLDNEW
1 <!DOCTYPE html><html><head><script src="packages/shadow_dom/shadow_dom.debug.js" ></script> 1 <!DOCTYPE html><html><head><script src="packages/shadow_dom/shadow_dom.debug.js" ></script>
2 <script src="packages/custom_element/custom-elements.debug.js"></script> 2 <script src="packages/custom_element/custom-elements.debug.js"></script>
3 3
4 <title>Dart VM Observatory</title> 4 <title>Dart VM Observatory</title>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss"> 6 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss">
7 <script type="text/javascript" src="https://www.google.com/jsapi"></script> 7 <script type="text/javascript" src="https://www.google.com/jsapi"></script>
8 <script src="packages/browser/interop.js"></script> 8 <script src="packages/browser/interop.js"></script>
9 9
10 <script src="index_devtools.html_bootstrap.dart.js"></script> 10 <script src="index_devtools.html_bootstrap.dart.js"></script>
(...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after
1168 <span style="padding-left:20px;"> 1168 <span style="padding-left:20px;">
1169 [<a on-click="{{ resume }}">resume</a>] 1169 [<a on-click="{{ resume }}">resume</a>]
1170 </span> 1170 </span>
1171 </template> 1171 </template>
1172 1172
1173 <template if="{{ isolate.running }}"> 1173 <template if="{{ isolate.running }}">
1174 <strong>running</strong> 1174 <strong>running</strong>
1175 @ 1175 @
1176 <function-ref ref="{{ isolate.topFrame['function'] }}"> 1176 <function-ref ref="{{ isolate.topFrame['function'] }}">
1177 </function-ref> 1177 </function-ref>
1178 (<script-ref ref="{{ isolate.topFrame['script'] }}" line="{{ isola te.topFrame['line'] }}"></script-ref>) 1178 (<script-ref ref="{{ isolate.topFrame['script'] }}" pos="{{ isolat e.topFrame['tokenPos'] }}">
1179 </script-ref>)
1179 </template> 1180 </template>
1180 1181
1181 <template if="{{ isolate.idle }}"> 1182 <template if="{{ isolate.idle }}">
1182 <strong>idle</strong> 1183 <strong>idle</strong>
1183 </template> 1184 </template>
1184 </div> 1185 </div>
1185 </div> 1186 </div>
1186 </div> 1187 </div>
1187 </div> 1188 </div>
1188 1189
(...skipping 917 matching lines...) Expand 10 before | Expand all | Expand 10 after
2106 <template> 2107 <template>
2107 <a href="{{ url }}">{{ ref.name }}</a> 2108 <a href="{{ url }}">{{ ref.name }}</a>
2108 </template> 2109 </template>
2109 2110
2110 </polymer-element> 2111 </polymer-element>
2111 2112
2112 2113
2113 <observatory-application devtools="true"></observatory-application> 2114 <observatory-application devtools="true"></observatory-application>
2114 2115
2115 </body></html> 2116 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698