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