Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index_devtools.html

Issue 348043003: Observatory: Fix bug in field overview of a class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add deployed/ Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html><html><head> 1 <!DOCTYPE html><html><head>
2 <title>Dart VM Observatory</title> 2 <title>Dart VM Observatory</title>
3 <meta charset="utf-8"> 3 <meta charset="utf-8">
4 4
5 5
6 6
7 7
8 8
9 9
10 10
(...skipping 3801 matching lines...) Expand 10 before | Expand all | Expand 10 after
3812 3812
3813 <template if="{{ cls.error != null }}"> 3813 <template if="{{ cls.error != null }}">
3814 <!-- TODO(turnidge): Don't use instance-ref for error display here --> 3814 <!-- TODO(turnidge): Don't use instance-ref for error display here -->
3815 <instance-ref ref="{{ cls.error }}"></instance-ref> 3815 <instance-ref ref="{{ cls.error }}"></instance-ref>
3816 </template> 3816 </template>
3817 3817
3818 <hr> 3818 <hr>
3819 3819
3820 <div class="content"> 3820 <div class="content">
3821 <template if="{{ cls.fields.isNotEmpty }}"> 3821 <template if="{{ cls.fields.isNotEmpty }}">
3822 fields ({{ cls['fields'].length }}) 3822 fields ({{ cls.fields.length }})
3823 <curly-block expand="{{ cls.fields.length <= 8 }}"> 3823 <curly-block expand="{{ cls.fields.length <= 8 }}">
3824 <div class="memberList"> 3824 <div class="memberList">
3825 <template repeat="{{ field in cls.fields }}"> 3825 <template repeat="{{ field in cls.fields }}">
3826 <div class="memberItem"> 3826 <div class="memberItem">
3827 <div class="memberName"> 3827 <div class="memberName">
3828 <field-ref ref="{{ field }}"></field-ref> 3828 <field-ref ref="{{ field }}"></field-ref>
3829 </div> 3829 </div>
3830 <div class="memberValue"> 3830 <div class="memberValue">
3831 <template if="{{ field['value'] != null }}"> 3831 <template if="{{ field['value'] != null }}">
3832 <instance-ref ref="{{ field['value'] }}"></instance-ref> 3832 <instance-ref ref="{{ field['value'] }}"></instance-ref>
(...skipping 12720 matching lines...) Expand 10 before | Expand all | Expand 10 after
16553 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a> 16553 <a on-click="{{ goto }}" href="{{ url }}">{{ ref.name }}</a>
16554 </template> 16554 </template>
16555 </polymer-element> 16555 </polymer-element>
16556 16556
16557 16557
16558 16558
16559 16559
16560 <observatory-application devtools="true"></observatory-application> 16560 <observatory-application devtools="true"></observatory-application>
16561 16561
16562 <script src="index_devtools.html_bootstrap.dart.js" async=""></script></body></h tml> 16562 <script src="index_devtools.html_bootstrap.dart.js" async=""></script></body></h tml>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698