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

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

Issue 1233053002: Make random clicks in the debugger give the command line input focus. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: before submit Created 5 years, 5 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 | « runtime/observatory/lib/src/elements/debugger.dart ('k') | 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 </div> 430 </div>
431 </template> 431 </template>
432 </polymer-element> 432 </polymer-element>
433 433
434 <polymer-element name="debugger-input" extends="observatory-element"> 434 <polymer-element name="debugger-input" extends="observatory-element">
435 <template> 435 <template>
436 <link rel="stylesheet" href="css/shared.css"> 436 <link rel="stylesheet" href="css/shared.css">
437 <style> 437 <style>
438 .textBox { 438 .textBox {
439 margin: 20px; 439 margin: 20px;
440 padding: 5px;
440 font: 400 16px consolas, courier, monospace; 441 font: 400 16px consolas, courier, monospace;
441 width: 95%; 442 width: 95%;
442 } 443 }
443 </style> 444 </style>
444 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus > 445 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus >
445 </template> 446 </template>
446 </polymer-element> 447 </polymer-element>
447 448
448 <script type="application/dart" src="debugger.dart"></script> 449 <script type="application/dart" src="debugger.dart"></script>
OLDNEW
« 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