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"> | |
3 <link rel="import" href="instance_ref.html"> | 2 <link rel="import" href="instance_ref.html"> |
4 | 3 |
5 <polymer-element name="code-view"> | 4 <polymer-element name="code-view"> |
6 <template> | 5 <template> |
7 <link rel="stylesheet" href="css/shared.css"> | 6 <link rel="stylesheet" href="css/shared.css"> |
8 <style> | 7 <style> |
9 .table { | 8 .table { |
10 table-layout: fixed; | 9 table-layout: fixed; |
11 } | 10 } |
12 | 11 |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 </thead> | 146 </thead> |
148 <tbody class="monospace" id="disassemblyTableBody"> | 147 <tbody class="monospace" id="disassemblyTableBody"> |
149 </tbody> | 148 </tbody> |
150 </table> | 149 </table> |
151 </div> | 150 </div> |
152 <view-footer></view-footer> | 151 <view-footer></view-footer> |
153 </template> | 152 </template> |
154 </polymer-element> | 153 </polymer-element> |
155 | 154 |
156 <script type="application/dart" src="code_view.dart"></script> | 155 <script type="application/dart" src="code_view.dart"></script> |
OLD | NEW |