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

Side by Side Diff: runtime/observatory/lib/src/elements/debugger.html

Issue 1079163009: Fix script-view. Hide annotations except the current position when debugging. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 | « no previous file | runtime/observatory/lib/src/elements/script_inset.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="function_ref.html"> 2 <link rel="import" href="function_ref.html">
3 <link rel="import" href="nav_bar.html"> 3 <link rel="import" href="nav_bar.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 7
8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in 8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in
9 devtools --> 9 devtools -->
10 <polymer-element name="icon-expand-less" noscript> 10 <polymer-element name="icon-expand-less" noscript>
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 </a> 238 </a>
239 239
240 <template if="{{expanded}}"> 240 <template if="{{expanded}}">
241 <div class="frameDetails"> 241 <div class="frameDetails">
242 <div class="flex-row"> 242 <div class="flex-row">
243 <div class="flex-item-60-percent"> 243 <div class="flex-item-60-percent">
244 <script-inset height="{{ scriptHeight }}" 244 <script-inset height="{{ scriptHeight }}"
245 script="{{ frame['function'].script }}" 245 script="{{ frame['function'].script }}"
246 startPos="{{ frame['function'].tokenPos }}" 246 startPos="{{ frame['function'].tokenPos }}"
247 endPos="{{ frame['function'].endTokenPos }}" 247 endPos="{{ frame['function'].endTokenPos }}"
248 currentPos="{{ frame['tokenPos'] }}"> 248 currentPos="{{ frame['tokenPos'] }}"
249 inDebuggerContext="{{ true }}">
249 </script-inset> 250 </script-inset>
250 </div> 251 </div>
251 <div class="flex-item-40-percent"> 252 <div class="flex-item-40-percent">
252 <div style="padding:10px;" class="memberList"> 253 <div style="padding:10px;" class="memberList">
253 <template repeat="{{ v in frame['vars'] }}"> 254 <template repeat="{{ v in frame['vars'] }}">
254 <div class="memberItem"> 255 <div class="memberItem">
255 <div class="memberName">{{ v['name']}}</div> 256 <div class="memberName">{{ v['name']}}</div>
256 <div class="memberValue"> 257 <div class="memberValue">
257 <any-service-ref ref="{{ v['value'] }}"> 258 <any-service-ref ref="{{ v['value'] }}">
258 </any-service-ref> 259 </any-service-ref>
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 margin: 20px; 313 margin: 20px;
313 font: 400 16px consolas, courier, monospace; 314 font: 400 16px consolas, courier, monospace;
314 width: 95%; 315 width: 95%;
315 } 316 }
316 </style> 317 </style>
317 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus > 318 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus >
318 </template> 319 </template>
319 </polymer-element> 320 </polymer-element>
320 321
321 <script type="application/dart" src="debugger.dart"></script> 322 <script type="application/dart" src="debugger.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/script_inset.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698