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

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

Issue 1309223002: Allow script insets to scroll. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: sync Created 5 years, 4 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
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/script_inset.html » ('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="eval_link.html"> 4 <link rel="import" href="eval_link.html">
5 <link rel="import" href="observatory_element.html"> 5 <link rel="import" href="observatory_element.html">
6 <link rel="import" href="script_inset.html"> 6 <link rel="import" href="script_inset.html">
7 <link rel="import" href="script_ref.html"> 7 <link rel="import" href="script_ref.html">
8 8
9 <!-- TODO(turnidge): Use core-icon once core_elements work properly in 9 <!-- TODO(turnidge): Use core-icon once core_elements work properly in
10 devtools --> 10 devtools -->
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 </template> 364 </template>
365 </div> 365 </div>
366 </a> 366 </a>
367 367
368 <template if="{{expanded}}"> 368 <template if="{{expanded}}">
369 <div class="messageDetails"> 369 <div class="messageDetails">
370 <div class="flex-row-wrap"> 370 <div class="flex-row-wrap">
371 <div class="flex-item-script"> 371 <div class="flex-item-script">
372 <template if="{{ message.handler != null }}"> 372 <template if="{{ message.handler != null }}">
373 <source-inset height="{{ scriptHeight }}" 373 <source-inset height="{{ scriptHeight }}"
374 location="{{ message.handler.location }}" 374 location="{{ message.handler.location }}"
375 inDebuggerContext="{{ true }}"> 375 inDebuggerContext="{{ true }}">
376 </source-inset> 376 </source-inset>
377 </template> 377 </template>
378 </div> 378 </div>
379 <div class="flex-item-vars"> 379 <div class="flex-item-vars">
380 <div class="memberItem"> 380 <div class="memberItem">
381 <div class="memberName"></div> 381 <div class="memberName"></div>
382 <div class="memberValue"> 382 <div class="memberValue">
383 <eval-link callback="{{ previewMessage }}" label="[preview]" r esult="{{ preview }}"></eval-link> 383 <eval-link callback="{{ previewMessage }}" label="[preview]" r esult="{{ preview }}"></eval-link>
384 </div> 384 </div>
385 </div> 385 </div>
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 padding: 5px; 446 padding: 5px;
447 font: 400 16px consolas, courier, monospace; 447 font: 400 16px consolas, courier, monospace;
448 width: 95%; 448 width: 95%;
449 } 449 }
450 </style> 450 </style>
451 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus > 451 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus >
452 </template> 452 </template>
453 </polymer-element> 453 </polymer-element>
454 454
455 <script type="application/dart" src="debugger.dart"></script> 455 <script type="application/dart" src="debugger.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/script_inset.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698