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