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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 <template if="{{ line.bpt != null && line.bpt['resolved'] && !busy}}"> | 140 <template if="{{ line.bpt != null && line.bpt['resolved'] && !busy}}"> |
141 <div class="resolvedBreakpoint"> | 141 <div class="resolvedBreakpoint"> |
142 <a on-click="{{ toggleBreakpoint }}">B</a> | 142 <a on-click="{{ toggleBreakpoint }}">B</a> |
143 </div> | 143 </div> |
144 </template> | 144 </template> |
145 | 145 |
146 </template> | 146 </template> |
147 </polymer-element> | 147 </polymer-element> |
148 | 148 |
149 <script type="application/dart" src="script_inset.dart"></script> | 149 <script type="application/dart" src="script_inset.dart"></script> |
OLD | NEW |