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

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

Issue 1103643004: Add breadcrumb for the VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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 <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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 overflow-y: auto; 102 overflow-y: auto;
103 } 103 }
104 .commandline { 104 .commandline {
105 flex: 0 0 auto; 105 flex: 0 0 auto;
106 } 106 }
107 </style> 107 </style>
108 108
109 <div class="container"> 109 <div class="container">
110 <nav-bar id="navbarDiv" showNotify="{{ false }}"> 110 <nav-bar id="navbarDiv" showNotify="{{ false }}">
111 <top-nav-menu></top-nav-menu> 111 <top-nav-menu></top-nav-menu>
112 <isolate-nav-menu isolate="{{ isolate }}"> 112 » <vm-nav-menu vm="{{ isolate.vm }}"></vm-nav-menu>
113 » </isolate-nav-menu> 113 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu>
114 <nav-menu link="{{ makeLink('/debugger', isolate) }}" anchor="debugger" last="{{ true }}"></nav-menu> 114 <nav-menu link="{{ makeLink('/debugger', isolate) }}" anchor="debugger" last="{{ true }}"></nav-menu>
115 </nav-bar> 115 </nav-bar>
116 <div id="stackDiv" class="stack"> 116 <div id="stackDiv" class="stack">
117 <debugger-stack id="stackElement" isolate="{{ isolate }}"></debugger-sta ck> 117 <debugger-stack id="stackElement" isolate="{{ isolate }}"></debugger-sta ck>
118 </div> 118 </div>
119 <!-- 119 <!--
120 <core-splitter direction="up" allowOverflow=true></core-splitter> 120 <core-splitter direction="up" allowOverflow=true></core-splitter>
121 --> 121 -->
122 <div id="splitterDiv"><hr class="splitter"></div> 122 <div id="splitterDiv"><hr class="splitter"></div>
123 <div id="consoleDiv" class="console"> 123 <div id="consoleDiv" class="console">
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 margin: 20px; 313 margin: 20px;
314 font: 400 16px consolas, courier, monospace; 314 font: 400 16px consolas, courier, monospace;
315 width: 95%; 315 width: 95%;
316 } 316 }
317 </style> 317 </style>
318 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus > 318 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus >
319 </template> 319 </template>
320 </polymer-element> 320 </polymer-element>
321 321
322 <script type="application/dart" src="debugger.dart"></script> 322 <script type="application/dart" src="debugger.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698