| 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 .sourceTable { | 9 .sourceTable { |
| 10 display: table; | 10 display: table; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 background-color: #cac; | 72 background-color: #cac; |
| 73 } | 73 } |
| 74 .resolvedBreakpoint { | 74 .resolvedBreakpoint { |
| 75 color: white; | 75 color: white; |
| 76 background-color: #e66; | 76 background-color: #e66; |
| 77 } | 77 } |
| 78 </style> | 78 </style> |
| 79 </template> | 79 </template> |
| 80 </polymer-element> | 80 </polymer-element> |
| 81 | 81 |
| 82 |
| 83 <polymer-element name="source-inset"> |
| 84 <template> |
| 85 <template if="{{ location != null }}"> |
| 86 <script-inset script="{{ location.script }}" |
| 87 startPos="{{ location.tokenPos }}" |
| 88 endPos="{{ location.endTokenPos }}" |
| 89 height="{{ height }}" |
| 90 currentPos="{{ currentPos }}" |
| 91 inDebuggerContext="{{ inDebuggerContext }}" |
| 92 variables="{{ variables }}"> |
| 93 </script-inset> |
| 94 </template> |
| 95 </template> |
| 96 </polymer-element> |
| 97 |
| 82 <script type="application/dart" src="script_inset.dart"></script> | 98 <script type="application/dart" src="script_inset.dart"></script> |
| OLD | NEW |