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

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

Issue 2167053002: Converted Observatory nav-notify element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed template ciclic references that were blocking initialization Created 4 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
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
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 -->
11 <polymer-element name="icon-expand-less" noscript> 11 <polymer-element name="icon-expand-less" noscript>
12 <template> 12 <template>
13 <svg width="24" height="24"> 13 <svg width="24" height="24">
14 <polygon points="12,8 6,14 7.4,15.4 12,10.8 16.6,15.4 18,14 "/> 14 <polygon points="12,8 6,14 7.4,15.4 12,10.8 16.6,15.4 18,14 "/>
15 </svg> 15 </svg>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 </polymer-element> 65 </polymer-element>
66 66
67 <polymer-element name="icon-info-outline" noscript> 67 <polymer-element name="icon-info-outline" noscript>
68 <template> 68 <template>
69 <svg width="24" height="24"> 69 <svg width="24" height="24">
70 <path d="M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 1 0-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z"/> 70 <path d="M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 1 0-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z"/>
71 </svg> 71 </svg>
72 </template> 72 </template>
73 </polymer-element> 73 </polymer-element>
74 74
75 <polymer-element name="debugger-page" extends="observatory-element"> 75 <polymer-element name="debugger-page">
76 <template> 76 <template>
77 <link rel="stylesheet" href="css/shared.css"> 77 <link rel="stylesheet" href="css/shared.css">
78 <style> 78 <style>
79 .container { 79 .container {
80 height: 100%; 80 height: 100%;
81 display: flex; 81 display: flex;
82 flex-direction: column; 82 flex-direction: column;
83 justify-content: space-between; 83 justify-content: space-between;
84 } 84 }
85 nav-bar { 85 nav-bar {
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 <div id="consoleDiv" class="console"> 127 <div id="consoleDiv" class="console">
128 <debugger-console id="console" isolate="{{ isolate }}"></debugger-consol e> 128 <debugger-console id="console" isolate="{{ isolate }}"></debugger-consol e>
129 </div> 129 </div>
130 <div id="commandDiv" class="commandline"> 130 <div id="commandDiv" class="commandline">
131 <debugger-input id="commandline" isolate="{{ isolate }}"></debugger-inpu t> 131 <debugger-input id="commandline" isolate="{{ isolate }}"></debugger-inpu t>
132 </div> 132 </div>
133 </div> 133 </div>
134 </template> 134 </template>
135 </polymer-element> 135 </polymer-element>
136 136
137 <polymer-element name="debugger-stack" extends="observatory-element"> 137 <polymer-element name="debugger-stack">
138 <template> 138 <template>
139 <link rel="stylesheet" href="css/shared.css"> 139 <link rel="stylesheet" href="css/shared.css">
140 <style> 140 <style>
141 .sampledMessage { 141 .sampledMessage {
142 margin: 0px 20px 10px 20px; 142 margin: 0px 20px 10px 20px;
143 font: 400 14px 'Montserrat', sans-serif; 143 font: 400 14px 'Montserrat', sans-serif;
144 line-height: 125%; 144 line-height: 125%;
145 } 145 }
146 .splitter { 146 .splitter {
147 height: 0px; 147 height: 0px;
(...skipping 30 matching lines...) Expand all
178 <template if="{{ !hasMessages }}"> 178 <template if="{{ !hasMessages }}">
179 <div class="noMessages">No pending messages</div> 179 <div class="noMessages">No pending messages</div>
180 </template> 180 </template>
181 <ul id="messageList" class="list-group"> 181 <ul id="messageList" class="list-group">
182 <!-- debugger-message elements are added programmatically --> 182 <!-- debugger-message elements are added programmatically -->
183 </ul> 183 </ul>
184 </template> 184 </template>
185 </polymer-element> 185 </polymer-element>
186 186
187 187
188 <polymer-element name="debugger-frame" extends="observatory-element"> 188 <polymer-element name="debugger-frame">
189 <template> 189 <template>
190 <link rel="stylesheet" href="css/shared.css"> 190 <link rel="stylesheet" href="css/shared.css">
191 <style> 191 <style>
192 .frameOuter { 192 .frameOuter {
193 position: relative; 193 position: relative;
194 padding: 5px; 194 padding: 5px;
195 border: 1px solid white; 195 border: 1px solid white;
196 } 196 }
197 .frameOuter:hover { 197 .frameOuter:hover {
198 border: 1px solid #e0e0e0; 198 border: 1px solid #e0e0e0;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 <icon-expand-less></icon-expand-less> 294 <icon-expand-less></icon-expand-less>
295 </a> 295 </a>
296 </template> 296 </template>
297 </div> 297 </div>
298 </div> 298 </div>
299 </template> 299 </template>
300 </div> 300 </div>
301 </template> 301 </template>
302 </polymer-element> 302 </polymer-element>
303 303
304 <polymer-element name="debugger-message" extends="observatory-element"> 304 <polymer-element name="debugger-message">
305 <template> 305 <template>
306 <link rel="stylesheet" href="css/shared.css"> 306 <link rel="stylesheet" href="css/shared.css">
307 <style> 307 <style>
308 .messageOuter { 308 .messageOuter {
309 position: relative; 309 position: relative;
310 padding: 5px; 310 padding: 5px;
311 border: 1px solid white; 311 border: 1px solid white;
312 } 312 }
313 .messageOuter:hover { 313 .messageOuter:hover {
314 border: 1px solid #e0e0e0; 314 border: 1px solid #e0e0e0;
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 <icon-expand-less></icon-expand-less> 399 <icon-expand-less></icon-expand-less>
400 </a> 400 </a>
401 </template> 401 </template>
402 </div> 402 </div>
403 </div> 403 </div>
404 </template> 404 </template>
405 </div> 405 </div>
406 </template> 406 </template>
407 </polymer-element> 407 </polymer-element>
408 408
409 <polymer-element name="debugger-console" extends="observatory-element"> 409 <polymer-element name="debugger-console">
410 <template> 410 <template>
411 <link rel="stylesheet" href="css/shared.css"> 411 <link rel="stylesheet" href="css/shared.css">
412 <style> 412 <style>
413 .console { 413 .console {
414 margin: 0px 20px 10px 20px; 414 margin: 0px 20px 10px 20px;
415 } 415 }
416 .normal { 416 .normal {
417 font: normal 14px consolas, courier, monospace; 417 font: normal 14px consolas, courier, monospace;
418 white-space: pre; 418 white-space: pre;
419 line-height: 125%; 419 line-height: 125%;
(...skipping 18 matching lines...) Expand all
438 .spacer { 438 .spacer {
439 height: 20px; 439 height: 20px;
440 } 440 }
441 </style> 441 </style>
442 <div id="consoleText" class="console"> 442 <div id="consoleText" class="console">
443 <!-- Console output is added programmatically --> 443 <!-- Console output is added programmatically -->
444 </div> 444 </div>
445 </template> 445 </template>
446 </polymer-element> 446 </polymer-element>
447 447
448 <polymer-element name="debugger-input" extends="observatory-element"> 448 <polymer-element name="debugger-input">
449 <template> 449 <template>
450 <link rel="stylesheet" href="css/shared.css"> 450 <link rel="stylesheet" href="css/shared.css">
451 <style> 451 <style>
452 .container { 452 .container {
453 height: 100%; 453 height: 100%;
454 display: flex; 454 display: flex;
455 flex-direction: row; 455 flex-direction: row;
456 justify-content: space-between; 456 justify-content: space-between;
457 } 457 }
458 .textBox { 458 .textBox {
(...skipping 15 matching lines...) Expand all
474 <div class="container"> 474 <div class="container">
475 <template if="{{ modalPrompt != null }}"> 475 <template if="{{ modalPrompt != null }}">
476 <div class="modalPrompt">{{ modalPrompt }}</div> 476 <div class="modalPrompt">{{ modalPrompt }}</div>
477 </template> 477 </template>
478 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofoc us> 478 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofoc us>
479 </div> 479 </div>
480 </template> 480 </template>
481 </polymer-element> 481 </polymer-element>
482 482
483 <script type="application/dart" src="debugger.dart"></script> 483 <script type="application/dart" src="debugger.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/css/shared.css ('k') | runtime/observatory/lib/src/elements/error_ref.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698