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

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

Issue 1307323003: Don't allow variables to overwrite the frame edge. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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 | 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 <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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 display: inline-block; 227 display: inline-block;
228 } 228 }
229 .flex-item-script { 229 .flex-item-script {
230 flex-grow: 1; 230 flex-grow: 1;
231 flex-shrink: 1; 231 flex-shrink: 1;
232 flex-basis: 765px; 232 flex-basis: 765px;
233 } 233 }
234 .flex-item-vars { 234 .flex-item-vars {
235 flex-grow: 5; 235 flex-grow: 5;
236 flex-shrink: 0; 236 flex-shrink: 0;
237 flex-basis: 225px; 237 flex-basis: 250px;
238 overflow-x: hidden;
238 } 239 }
239 </style> 240 </style>
240 <div id="frameOuter" class="frameOuter"> 241 <div id="frameOuter" class="frameOuter">
241 <a on-click="{{ toggleExpand }}"> 242 <a on-click="{{ toggleExpand }}">
242 <div class="frameSummary"> 243 <div class="frameSummary">
243 <div class="frameSummaryText"> 244 <div class="frameSummaryText">
244 <div class="frameId"><b>frame {{ frame.index }}</b></div> 245 <div class="frameId"><b>frame {{ frame.index }}</b></div>
245 <function-ref ref="{{ frame.function }}"></function-ref> 246 <function-ref ref="{{ frame.function }}"></function-ref>
246 ( <source-link location="{{ frame.location }}"></source-link> ) 247 ( <source-link location="{{ frame.location }}"></source-link> )
247 </div> 248 </div>
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 padding: 5px; 447 padding: 5px;
447 font: 400 16px consolas, courier, monospace; 448 font: 400 16px consolas, courier, monospace;
448 width: 95%; 449 width: 95%;
449 } 450 }
450 </style> 451 </style>
451 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus > 452 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus >
452 </template> 453 </template>
453 </polymer-element> 454 </polymer-element>
454 455
455 <script type="application/dart" src="debugger.dart"></script> 456 <script type="application/dart" src="debugger.dart"></script>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698