| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 flex: 0 0 auto; | 105 flex: 0 0 auto; |
| 106 } | 106 } |
| 107 </style> | 107 </style> |
| 108 | 108 |
| 109 <div class="container"> | 109 <div class="container"> |
| 110 <nav-bar id="navbarDiv" showNotify="{{ false }}"> | 110 <nav-bar id="navbarDiv" showNotify="{{ false }}"> |
| 111 <top-nav-menu></top-nav-menu> | 111 <top-nav-menu></top-nav-menu> |
| 112 <isolate-nav-menu isolate="{{ isolate }}"> | 112 <isolate-nav-menu isolate="{{ isolate }}"> |
| 113 </isolate-nav-menu> | 113 </isolate-nav-menu> |
| 114 <nav-menu link="{{ makeLink('/debugger', isolate) }}" anchor="debugger"
last="{{ true }}"></nav-menu> | 114 <nav-menu link="{{ makeLink('/debugger', isolate) }}" anchor="debugger"
last="{{ true }}"></nav-menu> |
| 115 <nav-control></nav-control> | |
| 116 </nav-bar> | 115 </nav-bar> |
| 117 <div id="stackDiv" class="stack"> | 116 <div id="stackDiv" class="stack"> |
| 118 <debugger-stack id="stackElement" isolate="{{ isolate }}"></debugger-sta
ck> | 117 <debugger-stack id="stackElement" isolate="{{ isolate }}"></debugger-sta
ck> |
| 119 </div> | 118 </div> |
| 120 <!-- | 119 <!-- |
| 121 <core-splitter direction="up" allowOverflow=true></core-splitter> | 120 <core-splitter direction="up" allowOverflow=true></core-splitter> |
| 122 --> | 121 --> |
| 123 <div id="splitterDiv"><hr class="splitter"></div> | 122 <div id="splitterDiv"><hr class="splitter"></div> |
| 124 <div id="consoleDiv" class="console"> | 123 <div id="consoleDiv" class="console"> |
| 125 <debugger-console id="console" isolate="{{ isolate }}"></debugger-consol
e> | 124 <debugger-console id="console" isolate="{{ isolate }}"></debugger-consol
e> |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 margin: 20px; | 312 margin: 20px; |
| 314 font: 400 16px consolas, courier, monospace; | 313 font: 400 16px consolas, courier, monospace; |
| 315 width: 95%; | 314 width: 95%; |
| 316 } | 315 } |
| 317 </style> | 316 </style> |
| 318 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> | 317 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus
> |
| 319 </template> | 318 </template> |
| 320 </polymer-element> | 319 </polymer-element> |
| 321 | 320 |
| 322 <script type="application/dart" src="debugger.dart"></script> | 321 <script type="application/dart" src="debugger.dart"></script> |
| OLD | NEW |