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

Unified Diff: runtime/observatory/lib/src/elements/debugger.html

Issue 1594603003: Make local variables sticky-scroll in debugger frames. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/debugger.html
diff --git a/runtime/observatory/lib/src/elements/debugger.html b/runtime/observatory/lib/src/elements/debugger.html
index 570f19575d95b94480896688aa62e5a1e8d34173..20e2e4d649cd7c814e1fde34c55e8c2d6552313b 100644
--- a/runtime/observatory/lib/src/elements/debugger.html
+++ b/runtime/observatory/lib/src/elements/debugger.html
@@ -238,6 +238,12 @@
flex-basis: 250px;
overflow-x: hidden;
}
+ #vars {
+ position: relative;
+ top: 5px;
+ padding-left:2em;
+ padding-bottom: 5px;
+ }
</style>
<div id="frameOuter" class="frameOuter">
<a on-click="{{ toggleExpand }}">
@@ -268,7 +274,7 @@
</source-inset>
</div>
<div class="flex-item-vars">
- <div style="padding-left:2em;" class="memberList">
+ <div id="vars" class="memberList">
<template repeat="{{ v in properLocals }}">
{{ v['name']}}&nbsp;:&nbsp;
<any-service-ref ref="{{ v['value'] }}"
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698