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="observatory_element.html"> | 4 <link rel="import" href="observatory_element.html"> |
5 <link rel="import" href="nav_bar.html"> | 5 <link rel="import" href="nav_bar.html"> |
6 <link rel="import" href="script_ref.html"> | 6 <link rel="import" href="script_ref.html"> |
7 <link rel="import" href="view_footer.html"> | |
8 | 7 |
9 <polymer-element name="code-view" extends="observatory-element"> | 8 <polymer-element name="code-view" extends="observatory-element"> |
10 <template> | 9 <template> |
11 <link rel="stylesheet" href="css/shared.css"> | 10 <link rel="stylesheet" href="css/shared.css"> |
12 <style> | 11 <style> |
13 .table { | 12 .table { |
14 table-layout: fixed; | 13 table-layout: fixed; |
15 } | 14 } |
16 | 15 |
17 th:nth-of-type(1), td:nth-of-type(1) { | 16 th:nth-of-type(1), td:nth-of-type(1) { |
(...skipping 132 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 |