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

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

Issue 2167053002: Converted Observatory nav-notify element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed template ciclic references that were blocking initialization Created 4 years, 4 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
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
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 7
8 <polymer-element name="code-view" extends="observatory-element"> 8 <polymer-element name="code-view">
9 <template> 9 <template>
10 <link rel="stylesheet" href="css/shared.css"> 10 <link rel="stylesheet" href="css/shared.css">
11 <style> 11 <style>
12 .table { 12 .table {
13 table-layout: fixed; 13 table-layout: fixed;
14 } 14 }
15 15
16 th:nth-of-type(1), td:nth-of-type(1) { 16 th:nth-of-type(1), td:nth-of-type(1) {
17 min-width: 10em; 17 min-width: 10em;
18 text-align: left; 18 text-align: left;
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 </thead> 150 </thead>
151 <tbody class="monospace" id="disassemblyTableBody"> 151 <tbody class="monospace" id="disassemblyTableBody">
152 </tbody> 152 </tbody>
153 </table> 153 </table>
154 </div> 154 </div>
155 <view-footer></view-footer> 155 <view-footer></view-footer>
156 </template> 156 </template>
157 </polymer-element> 157 </polymer-element>
158 158
159 <script type="application/dart" src="code_view.dart"></script> 159 <script type="application/dart" src="code_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/code_ref.html ('k') | runtime/observatory/lib/src/elements/context_ref.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698