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

Side by Side Diff: runtime/observatory/lib/src/elements/code_view.html

Issue 1063063006: Add links to Observatory documentation and bug tracking. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="function_ref.html"> 2 <link rel="import" href="function_ref.html">
3 <link rel="import" href="instance_ref.html"> 3 <link rel="import" href="instance_ref.html">
4 <link rel="import" href="observatory_element.html"> 4 <link rel="import" href="observatory_element.html">
5 <link rel="import" href="nav_bar.html"> 5 <link rel="import" href="nav_bar.html">
6 <link rel="import" href="script_ref.html"> 6 <link rel="import" href="script_ref.html">
7 <link rel="import" href="view_footer.html">
7 8
8 <polymer-element name="code-view" extends="observatory-element"> 9 <polymer-element name="code-view" extends="observatory-element">
9 <template> 10 <template>
10 <link rel="stylesheet" href="css/shared.css"> 11 <link rel="stylesheet" href="css/shared.css">
11 <style> 12 <style>
12 .table { 13 .table {
13 table-layout: fixed; 14 table-layout: fixed;
14 } 15 }
15 16
16 th:nth-of-type(1), td:nth-of-type(1) { 17 th:nth-of-type(1), td:nth-of-type(1) {
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 <tr> 125 <tr>
125 <th class="address" title="Address">Address</th> 126 <th class="address" title="Address">Address</th>
126 <th class="tick" title="Inclusive">Inclusive</th> 127 <th class="tick" title="Inclusive">Inclusive</th>
127 <th class="tick" title="Exclusive">Exclusive</th> 128 <th class="tick" title="Exclusive">Exclusive</th>
128 <th class="disassembly" title="Disassembly">Disassembly</th> 129 <th class="disassembly" title="Disassembly">Disassembly</th>
129 </tr> 130 </tr>
130 </thead> 131 </thead>
131 <tbody class="monospace" id="disassemblyTableBody"> 132 <tbody class="monospace" id="disassemblyTableBody">
132 </tbody> 133 </tbody>
133 </table> 134 </table>
134 <br><br><br> 135 <view-footer></view-footer>
135 <br><br><br>
136 </template> 136 </template>
137 </polymer-element> 137 </polymer-element>
138 138
139 <script type="application/dart" src="code_view.dart"></script> 139 <script type="application/dart" src="code_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/class_view.html ('k') | runtime/observatory/lib/src/elements/context_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698