| OLD | NEW |
| 1 <!DOCTYPE html><html><head> | 1 <!DOCTYPE html><html><head> |
| 2 | 2 |
| 3 | 3 |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c
ss"> | 5 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c
ss"> |
| 6 | 6 |
| 7 <title>Dart VM Observatory</title> | 7 <title>Dart VM Observatory</title> |
| 8 <script type="text/javascript" src="https://www.google.com/jsapi"></script> | 8 <script type="text/javascript" src="https://www.google.com/jsapi"></script> |
| 9 | 9 |
| 10 | 10 |
| (...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 </tr> | 716 </tr> |
| 717 </tbody></table> | 717 </tbody></table> |
| 718 </div> | 718 </div> |
| 719 </div> | 719 </div> |
| 720 | 720 |
| 721 </template> | 721 </template> |
| 722 | 722 |
| 723 </polymer-element> | 723 </polymer-element> |
| 724 <polymer-element name="stack-trace" extends="observatory-element"> | 724 <polymer-element name="stack-trace" extends="observatory-element"> |
| 725 <template> | 725 <template> |
| 726 <button type="button" on-click="{{refresh}}">Refresh</button> |
| 726 <template if="{{ trace['members'].isEmpty }}"> | 727 <template if="{{ trace['members'].isEmpty }}"> |
| 727 <div class="col-md-1"></div> | 728 <div class="col-md-1"></div> |
| 728 <div class="col-md-11"> | 729 <div class="col-md-11"> |
| 729 <em>No stack</em> | 730 <em>No stack</em> |
| 730 </div> | 731 </div> |
| 731 </template> | 732 </template> |
| 732 <template if="{{ trace['members'].isNotEmpty }}"> | 733 <template if="{{ trace['members'].isNotEmpty }}"> |
| 733 <ul class="list-group"> | 734 <ul class="list-group"> |
| 734 <template repeat="{{ frame in trace['members'] }}"> | 735 <template repeat="{{ frame in trace['members'] }}"> |
| 735 <li class="list-group-item"> | 736 <li class="list-group-item"> |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 </template> | 879 </template> |
| 879 <template if="{{ app.locationManager.profile == false }}"> | 880 <template if="{{ app.locationManager.profile == false }}"> |
| 880 <response-viewer app="{{ app }}"></response-viewer> | 881 <response-viewer app="{{ app }}"></response-viewer> |
| 881 </template> | 882 </template> |
| 882 </template> | 883 </template> |
| 883 | 884 |
| 884 </polymer-element> | 885 </polymer-element> |
| 885 <observatory-application></observatory-application> | 886 <observatory-application></observatory-application> |
| 886 | 887 |
| 887 </body></html> | 888 </body></html> |
| OLD | NEW |