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