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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/function_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="code_ref.html"> 3 <link rel="import" href="code_ref.html">
4 <link rel="import" href="function_ref.html"> 4 <link rel="import" href="function_ref.html">
5 <link rel="import" href="library_ref.html"> 5 <link rel="import" href="library_ref.html">
6 <link rel="import" href="observatory_element.html"> 6 <link rel="import" href="observatory_element.html">
7 <link rel="import" href="nav_bar.html"> 7 <link rel="import" href="nav_bar.html">
8 <link rel="import" href="script_inset.html"> 8 <link rel="import" href="script_inset.html">
9 <link rel="import" href="script_ref.html"> 9 <link rel="import" href="script_ref.html">
10 </head> 10 </head>
11 <polymer-element name="function-view" extends="observatory-element"> 11 <polymer-element name="function-view" extends="observatory-element">
12 <template> 12 <template>
13 <style> 13 <link rel="stylesheet" href="css/shared.css">
14 .content {
15 padding-left: 10%;
16 font: 400 14px 'Montserrat', sans-serif;
17 }
18 h1 {
19 font: 400 18px 'Montserrat', sans-serif;
20 }
21 .memberList {
22 display: table;
23 }
24 .memberItem {
25 display: table-row;
26 }
27 .memberName, .memberValue {
28 display: table-cell;
29 vertical-align: top;
30 padding: 3px 0 3px 1em;
31 font: 400 14px 'Montserrat', sans-serif;
32 }
33 </style>
34
35 <nav-bar> 14 <nav-bar>
36 <top-nav-menu></top-nav-menu> 15 <top-nav-menu></top-nav-menu>
37 <isolate-nav-menu isolate="{{ function.isolate }}"></isolate-nav-menu> 16 <isolate-nav-menu isolate="{{ function.isolate }}"></isolate-nav-menu>
38 <template if="{{ function['owner'].serviceType == 'Class' }}"> 17 <template if="{{ function['owner'].serviceType == 'Class' }}">
39 <!-- TODO(turnidge): Add library nav menu here. --> 18 <!-- TODO(turnidge): Add library nav menu here. -->
40 <class-nav-menu cls="{{ function['owner'] }}"></class-nav-menu> 19 <class-nav-menu cls="{{ function['owner'] }}"></class-nav-menu>
41 </template> 20 </template>
42 <template if="{{ function['owner'].serviceType == 'Library' }}"> 21 <template if="{{ function['owner'].serviceType == 'Library' }}">
43 <library-nav-menu library="{{ function['owner'] }}"></library-nav-menu> 22 <library-nav-menu library="{{ function['owner'] }}"></library-nav-menu>
44 </template> 23 </template>
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 </div> 110 </div>
132 111
133 <hr> 112 <hr>
134 <script-inset script="{{ function['script'] }}" pos="{{ function['tokenPos'] }}" endPos="{{ function['endTokenPos'] }}"> 113 <script-inset script="{{ function['script'] }}" pos="{{ function['tokenPos'] }}" endPos="{{ function['endTokenPos'] }}">
135 </script-inset> 114 </script-inset>
136 115
137 <br> 116 <br>
138 </template> 117 </template>
139 <script type="application/dart" src="function_view.dart"></script> 118 <script type="application/dart" src="function_view.dart"></script>
140 </polymer-element> 119 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698