| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 </template> | 364 </template> |
| 365 </div> | 365 </div> |
| 366 </a> | 366 </a> |
| 367 | 367 |
| 368 <template if="{{expanded}}"> | 368 <template if="{{expanded}}"> |
| 369 <div class="messageDetails"> | 369 <div class="messageDetails"> |
| 370 <div class="flex-row-wrap"> | 370 <div class="flex-row-wrap"> |
| 371 <div class="flex-item-script"> | 371 <div class="flex-item-script"> |
| 372 <template if="{{ message.handler != null }}"> | 372 <template if="{{ message.handler != null }}"> |
| 373 <source-inset height="{{ scriptHeight }}" | 373 <source-inset height="{{ scriptHeight }}" |
| 374 location="{{ message.handler.location }}" | 374 location="{{ message.handler.location }}" |
| 375 inDebuggerContext="{{ true }}"> | 375 inDebuggerContext="{{ true }}"> |
| 376 </source-inset> | 376 </source-inset> |
| 377 </template> | 377 </template> |
| 378 </div> | 378 </div> |
| 379 <div class="flex-item-vars"> | 379 <div class="flex-item-vars"> |
| 380 <div class="memberItem"> | 380 <div class="memberItem"> |
| 381 <div class="memberName"></div> | 381 <div class="memberName"></div> |
| 382 <div class="memberValue"> | 382 <div class="memberValue"> |
| 383 <eval-link callback="{{ previewMessage }}" label="[preview]" r
esult="{{ preview }}"></eval-link> | 383 <eval-link callback="{{ previewMessage }}" label="[preview]" r
esult="{{ preview }}"></eval-link> |
| 384 </div> | 384 </div> |
| 385 </div> | 385 </div> |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 padding: 5px; | 446 padding: 5px; |
| 447 font: 400 16px consolas, courier, monospace; | 447 font: 400 16px consolas, courier, monospace; |
| 448 width: 95%; | 448 width: 95%; |
| 449 } | 449 } |
| 450 </style> | 450 </style> |
| 451 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> | 451 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> |
| 452 </template> | 452 </template> |
| 453 </polymer-element> | 453 </polymer-element> |
| 454 | 454 |
| 455 <script type="application/dart" src="debugger.dart"></script> | 455 <script type="application/dart" src="debugger.dart"></script> |
| OLD | NEW |