| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="code_ref.html"> | 2 <link rel="import" href="code_ref.html"> |
| 3 <link rel="import" href="function_ref.html"> | 3 <link rel="import" href="function_ref.html"> |
| 4 <link rel="import" href="nav_bar.html"> | 4 <link rel="import" href="nav_bar.html"> |
| 5 <link rel="import" href="observatory_element.html"> | 5 <link rel="import" href="observatory_element.html"> |
| 6 <link rel="import" href="sliding_checkbox.html"> | 6 <link rel="import" href="sliding_checkbox.html"> |
| 7 </head> | 7 </head> |
| 8 <polymer-element name="isolate-profile" extends="observatory-element"> | 8 <polymer-element name="isolate-profile" extends="observatory-element"> |
| 9 <template> | 9 <template> |
| 10 <link rel="stylesheet" href="css/shared.css"> | 10 <link rel="stylesheet" href="css/shared.css"> |
| 11 <nav-bar> | 11 <nav-bar> |
| 12 <top-nav-menu></top-nav-menu> | 12 <top-nav-menu></top-nav-menu> |
| 13 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> | 13 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> |
| 14 <nav-menu link="{{ profile.isolate.relativeHashLink('profile') }}" anchor=
"cpu profile" last="{{ true }}"></nav-menu> | 14 <nav-menu link="{{ profile.isolate.relativeLink('profile') }}" anchor="cpu
profile" last="{{ true }}"></nav-menu> |
| 15 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 15 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 16 <nav-control></nav-control> |
| 16 </nav-bar> | 17 </nav-bar> |
| 17 <style> | 18 <style> |
| 18 .table { | 19 .table { |
| 19 border-collapse: collapse!important; | 20 border-collapse: collapse!important; |
| 20 width: 100%; | 21 width: 100%; |
| 21 margin-bottom: 20px | 22 margin-bottom: 20px |
| 22 } | 23 } |
| 23 .table thead > tr > th, | 24 .table thead > tr > th, |
| 24 .table tbody > tr > th, | 25 .table tbody > tr > th, |
| 25 .table tfoot > tr > th, | 26 .table tfoot > tr > th, |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 </div> | 182 </div> |
| 182 </div> | 183 </div> |
| 183 </td> | 184 </td> |
| 184 </tr> | 185 </tr> |
| 185 </tbody> | 186 </tbody> |
| 186 </table> | 187 </table> |
| 187 </div> | 188 </div> |
| 188 </template> | 189 </template> |
| 189 <script type="application/dart" src="isolate_profile.dart"></script> | 190 <script type="application/dart" src="isolate_profile.dart"></script> |
| 190 </polymer-element> | 191 </polymer-element> |
| OLD | NEW |