| 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"> | 7 <link rel="import" href="view_footer.html"> |
| 8 | 8 |
| 9 <polymer-element name="code-view" extends="observatory-element"> | 9 <polymer-element name="code-view" extends="observatory-element"> |
| 10 <template> | 10 <template> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 th:nth-of-type(3), td:nth-of-type(3) { | 27 th:nth-of-type(3), td:nth-of-type(3) { |
| 28 min-width: 8em; | 28 min-width: 8em; |
| 29 text-align: left; | 29 text-align: left; |
| 30 } | 30 } |
| 31 | 31 |
| 32 th:nth-of-type(4), td:nth-of-type(4) { | 32 th:nth-of-type(4), td:nth-of-type(4) { |
| 33 text-align: left; | 33 text-align: left; |
| 34 overflow: visible; | 34 overflow: visible; |
| 35 white-space: pre; | 35 white-space: pre; |
| 36 padding-right: 1em; | 36 padding-right: 1em; |
| 37 width: 1px; |
| 37 } | 38 } |
| 38 | 39 |
| 39 th:nth-of-type(5), td:nth-of-type(5) { | 40 th:nth-of-type(5), td:nth-of-type(5) { |
| 40 text-align: left; | 41 text-align: left; |
| 41 overflow: visible; | 42 overflow: visible; |
| 42 } | 43 } |
| 43 | 44 |
| 44 tr:hover > td { | 45 tr:hover > td { |
| 45 background-color: #F4C7C3; | 46 background-color: #F4C7C3; |
| 46 } | 47 } |
| 47 | 48 |
| 49 .code-comment { |
| 50 color: grey; |
| 51 font-style: italic; |
| 52 } |
| 53 |
| 48 </style> | 54 </style> |
| 49 <nav-bar> | 55 <nav-bar> |
| 50 <top-nav-menu></top-nav-menu> | 56 <top-nav-menu></top-nav-menu> |
| 51 <vm-nav-menu vm="{{ code.isolate.vm }}"></vm-nav-menu> | 57 <vm-nav-menu vm="{{ code.isolate.vm }}"></vm-nav-menu> |
| 52 <isolate-nav-menu isolate="{{ code.isolate }}"></isolate-nav-menu> | 58 <isolate-nav-menu isolate="{{ code.isolate }}"></isolate-nav-menu> |
| 53 <nav-menu link="{{ makeLink('/inspect', code) }}" anchor="{{ code.name }}"
last="{{ true }}"></nav-menu> | 59 <nav-menu link="{{ makeLink('/inspect', code) }}" anchor="{{ code.name }}"
last="{{ true }}"></nav-menu> |
| 54 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 60 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 55 <nav-refresh callback="{{ refreshTicks }}" label="Refresh Ticks"></nav-ref
resh> | 61 <nav-refresh callback="{{ refreshTicks }}" label="Refresh Ticks"></nav-ref
resh> |
| 56 </nav-bar> | 62 </nav-bar> |
| 57 <div class="content"> | 63 <div class="content"> |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 </thead> | 150 </thead> |
| 145 <tbody class="monospace" id="disassemblyTableBody"> | 151 <tbody class="monospace" id="disassemblyTableBody"> |
| 146 </tbody> | 152 </tbody> |
| 147 </table> | 153 </table> |
| 148 </div> | 154 </div> |
| 149 <view-footer></view-footer> | 155 <view-footer></view-footer> |
| 150 </template> | 156 </template> |
| 151 </polymer-element> | 157 </polymer-element> |
| 152 | 158 |
| 153 <script type="application/dart" src="code_view.dart"></script> | 159 <script type="application/dart" src="code_view.dart"></script> |
| OLD | NEW |