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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/instance_view.html

Issue 237683004: Disable applyAuthorStyles (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 <head> 1 <head>
2 <link rel="import" href="class_ref.html"> 2 <link rel="import" href="class_ref.html">
3 <link rel="import" href="error_view.html"> 3 <link rel="import" href="error_view.html">
4 <link rel="import" href="eval_box.html"> 4 <link rel="import" href="eval_box.html">
5 <link rel="import" href="eval_link.html"> 5 <link rel="import" href="eval_link.html">
6 <link rel="import" href="field_ref.html"> 6 <link rel="import" href="field_ref.html">
7 <link rel="import" href="function_ref.html"> 7 <link rel="import" href="function_ref.html">
8 <link rel="import" href="instance_ref.html"> 8 <link rel="import" href="instance_ref.html">
9 <link rel="import" href="observatory_element.html"> 9 <link rel="import" href="observatory_element.html">
10 <link rel="import" href="nav_bar.html"> 10 <link rel="import" href="nav_bar.html">
11 </head> 11 </head>
12 <polymer-element name="instance-view" extends="observatory-element"> 12 <polymer-element name="instance-view" extends="observatory-element">
13 <template> 13 <template>
14 <link rel="stylesheet" href="css/shared.css">
14 <nav-bar> 15 <nav-bar>
15 <top-nav-menu></top-nav-menu> 16 <top-nav-menu></top-nav-menu>
16 <isolate-nav-menu isolate="{{ instance.isolate }}"></isolate-nav-menu> 17 <isolate-nav-menu isolate="{{ instance.isolate }}"></isolate-nav-menu>
17 <!-- TODO(turnidge): Add library nav menu here. --> 18 <!-- TODO(turnidge): Add library nav menu here. -->
18 <class-nav-menu cls="{{ instance['class'] }}"></class-nav-menu> 19 <class-nav-menu cls="{{ instance['class'] }}"></class-nav-menu>
19 <nav-menu link="." anchor="instance" last="{{ true }}"></nav-menu> 20 <nav-menu link="." anchor="instance" last="{{ true }}"></nav-menu>
20 <nav-refresh callback="{{ refresh }}"></nav-refresh> 21 <nav-refresh callback="{{ refresh }}"></nav-refresh>
21 </nav-bar> 22 </nav-bar>
22 23
23 <style>
24 .content {
25 padding-left: 10%;
26 font: 400 14px 'Montserrat', sans-serif;
27 }
28 h1 {
29 font: 400 18px 'Montserrat', sans-serif;
30 }
31 .memberList {
32 display: table;
33 }
34 .memberItem {
35 display: table-row;
36 }
37 .memberName, .memberValue {
38 display: table-cell;
39 vertical-align: top;
40 padding: 3px 0 3px 1em;
41 font: 400 14px 'Montserrat', sans-serif;
42 }
43 </style>
44
45 <template if="{{ instance['error'] != null }}"> 24 <template if="{{ instance['error'] != null }}">
46 <error-view error_obj="{{ instance['error'] }}"></error-view> 25 <error-view error_obj="{{ instance['error'] }}"></error-view>
47 </template> 26 </template>
48 27
49 <template if="{{ instance['error'] == null }}"> 28 <template if="{{ instance['error'] == null }}">
50 <div class="content"> 29 <div class="content">
51 <!-- TODO(turnidge): Handle null instances. --> 30 <!-- TODO(turnidge): Handle null instances. -->
52 <template if="{{ isType(instance.serviceType) }}"> 31 <template if="{{ isType(instance.serviceType) }}">
53 <h1>type {{ instance['user_name'] }}</h1> 32 <h1>type {{ instance['user_name'] }}</h1>
54 </template> 33 </template>
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 139
161 <div class="content"> 140 <div class="content">
162 <eval-box callback="{{ eval }}"></eval-box> 141 <eval-box callback="{{ eval }}"></eval-box>
163 </div> 142 </div>
164 <br><br><br><br> 143 <br><br><br><br>
165 <br><br><br><br> 144 <br><br><br><br>
166 </template> 145 </template>
167 </template> 146 </template>
168 <script type="application/dart" src="instance_view.dart"></script> 147 <script type="application/dart" src="instance_view.dart"></script>
169 </polymer-element> 148 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698