| 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="observatory_element.html"> | 2 <link rel="import" href="observatory_element.html"> |
| 3 | 3 |
| 4 <polymer-element name="script-inset" extends="observatory-element"> | 4 <polymer-element name="script-inset" extends="observatory-element"> |
| 5 <template> | 5 <template> |
| 6 <style> | 6 <style> |
| 7 .sourceInset { | 7 .sourceInset { |
| 8 } | 8 } |
| 9 .sourceBox { | 9 .sourceBox { |
| 10 background-color: #f5f5f5; | 10 background-color: #f5f5f5; |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 <template if="{{ line.bpt == null && !line.possibleBpt }}"> | 153 <template if="{{ line.bpt == null && !line.possibleBpt }}"> |
| 154 <div class="emptyBreakpoint"> </div> | 154 <div class="emptyBreakpoint"> </div> |
| 155 </template> | 155 </template> |
| 156 | 156 |
| 157 <template if="{{ line.bpt == null && line.possibleBpt && !busy}}"> | 157 <template if="{{ line.bpt == null && line.possibleBpt && !busy}}"> |
| 158 <div class="possibleBreakpoint"> | 158 <div class="possibleBreakpoint"> |
| 159 <a on-click="{{ toggleBreakpoint }}">B</a> | 159 <a on-click="{{ toggleBreakpoint }}">B</a> |
| 160 </div> | 160 </div> |
| 161 </template> | 161 </template> |
| 162 | 162 |
| 163 <template if="{{ line.bpt != null && !line.bpt['resolved'] && !busy}}"> | 163 <template if="{{ line.bpt != null && !line.bpt.resolved && !busy}}"> |
| 164 <div class="unresolvedBreakpoint"> | 164 <div class="unresolvedBreakpoint"> |
| 165 <a on-click="{{ toggleBreakpoint }}">B</a> | 165 <a on-click="{{ toggleBreakpoint }}">B</a> |
| 166 </div> | 166 </div> |
| 167 </template> | 167 </template> |
| 168 | 168 |
| 169 <template if="{{ line.bpt != null && line.bpt['resolved'] && !busy}}"> | 169 <template if="{{ line.bpt != null && line.bpt.resolved && !busy}}"> |
| 170 <div class="resolvedBreakpoint"> | 170 <div class="resolvedBreakpoint"> |
| 171 <a on-click="{{ toggleBreakpoint }}">B</a> | 171 <a on-click="{{ toggleBreakpoint }}">B</a> |
| 172 </div> | 172 </div> |
| 173 </template> | 173 </template> |
| 174 </template> <!-- line != null --> | 174 </template> <!-- line != null --> |
| 175 | 175 |
| 176 </template> | 176 </template> |
| 177 </polymer-element> | 177 </polymer-element> |
| 178 | 178 |
| 179 <script type="application/dart" src="script_inset.dart"></script> | 179 <script type="application/dart" src="script_inset.dart"></script> |
| OLD | NEW |