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