| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |