| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 display: inline-block; | 227 display: inline-block; |
| 228 } | 228 } |
| 229 .flex-item-script { | 229 .flex-item-script { |
| 230 flex-grow: 1; | 230 flex-grow: 1; |
| 231 flex-shrink: 1; | 231 flex-shrink: 1; |
| 232 flex-basis: 765px; | 232 flex-basis: 765px; |
| 233 } | 233 } |
| 234 .flex-item-vars { | 234 .flex-item-vars { |
| 235 flex-grow: 5; | 235 flex-grow: 5; |
| 236 flex-shrink: 0; | 236 flex-shrink: 0; |
| 237 flex-basis: 225px; | 237 flex-basis: 250px; |
| 238 overflow-x: hidden; |
| 238 } | 239 } |
| 239 </style> | 240 </style> |
| 240 <div id="frameOuter" class="frameOuter"> | 241 <div id="frameOuter" class="frameOuter"> |
| 241 <a on-click="{{ toggleExpand }}"> | 242 <a on-click="{{ toggleExpand }}"> |
| 242 <div class="frameSummary"> | 243 <div class="frameSummary"> |
| 243 <div class="frameSummaryText"> | 244 <div class="frameSummaryText"> |
| 244 <div class="frameId"><b>frame {{ frame.index }}</b></div> | 245 <div class="frameId"><b>frame {{ frame.index }}</b></div> |
| 245 <function-ref ref="{{ frame.function }}"></function-ref> | 246 <function-ref ref="{{ frame.function }}"></function-ref> |
| 246 ( <source-link location="{{ frame.location }}"></source-link> ) | 247 ( <source-link location="{{ frame.location }}"></source-link> ) |
| 247 </div> | 248 </div> |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 padding: 5px; | 447 padding: 5px; |
| 447 font: 400 16px consolas, courier, monospace; | 448 font: 400 16px consolas, courier, monospace; |
| 448 width: 95%; | 449 width: 95%; |
| 449 } | 450 } |
| 450 </style> | 451 </style> |
| 451 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> | 452 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> |
| 452 </template> | 453 </template> |
| 453 </polymer-element> | 454 </polymer-element> |
| 454 | 455 |
| 455 <script type="application/dart" src="debugger.dart"></script> | 456 <script type="application/dart" src="debugger.dart"></script> |
| OLD | NEW |