| 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="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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 | 226 |
| 227 <polymer-element name="debugger-console" extends="observatory-element"> | 227 <polymer-element name="debugger-console" extends="observatory-element"> |
| 228 <template> | 228 <template> |
| 229 <link rel="stylesheet" href="css/shared.css"> | 229 <link rel="stylesheet" href="css/shared.css"> |
| 230 <style> | 230 <style> |
| 231 .console { | 231 .console { |
| 232 margin: 0px 20px 10px 20px; | 232 margin: 0px 20px 10px 20px; |
| 233 } | 233 } |
| 234 .normal { | 234 .normal { |
| 235 font: normal 14px consolas, courier, monospace; | 235 font: normal 14px consolas, courier, monospace; |
| 236 white-space: pre; |
| 236 line-height: 125%; | 237 line-height: 125%; |
| 237 } | 238 } |
| 238 .bold { | 239 .bold { |
| 239 font: bold 14px consolas, courier, monospace; | 240 font: bold 14px consolas, courier, monospace; |
| 241 white-space: pre; |
| 240 line-height: 125%; | 242 line-height: 125%; |
| 241 } | 243 } |
| 242 .spacer { | 244 .spacer { |
| 243 height: 20px; | 245 height: 20px; |
| 244 } | 246 } |
| 245 </style> | 247 </style> |
| 246 <div id="consoleText" class="console"> | 248 <div id="consoleText" class="console"> |
| 247 <!-- Console output is added programmatically here using the 'normal' | 249 <!-- Console output is added programmatically here using the 'normal' |
| 248 and 'bold' styles. --> | 250 and 'bold' styles. --> |
| 249 </div> | 251 </div> |
| 250 </template> | 252 </template> |
| 251 </polymer-element> | 253 </polymer-element> |
| 252 | 254 |
| 253 <polymer-element name="debugger-input" extends="observatory-element"> | 255 <polymer-element name="debugger-input" extends="observatory-element"> |
| 254 <template> | 256 <template> |
| 255 <link rel="stylesheet" href="css/shared.css"> | 257 <link rel="stylesheet" href="css/shared.css"> |
| 256 <style> | 258 <style> |
| 257 .textBox { | 259 .textBox { |
| 258 margin: 20px; | 260 margin: 20px; |
| 259 font: 400 16px consolas, courier, monospace; | 261 font: 400 16px consolas, courier, monospace; |
| 260 width: 95%; | 262 width: 95%; |
| 261 } | 263 } |
| 262 </style> | 264 </style> |
| 263 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> | 265 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> |
| 264 </template> | 266 </template> |
| 265 </polymer-element> | 267 </polymer-element> |
| 266 | 268 |
| 267 <script type="application/dart" src="debugger.dart"></script> | 269 <script type="application/dart" src="debugger.dart"></script> |
| OLD | NEW |