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

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

Issue 2244433003: Converted Observatory refs elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: All element tested 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="instance_ref.html">
3 2
4 <polymer-element name="code-view"> 3 <polymer-element name="code-view">
5 <template> 4 <template>
6 <link rel="stylesheet" href="css/shared.css"> 5 <link rel="stylesheet" href="css/shared.css">
7 <style> 6 <style>
8 .table { 7 .table {
9 table-layout: fixed; 8 table-layout: fixed;
10 } 9 }
11 10
12 th:nth-of-type(1), td:nth-of-type(1) { 11 th:nth-of-type(1), td:nth-of-type(1) {
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 </thead> 145 </thead>
147 <tbody class="monospace" id="disassemblyTableBody"> 146 <tbody class="monospace" id="disassemblyTableBody">
148 </tbody> 147 </tbody>
149 </table> 148 </table>
150 </div> 149 </div>
151 <view-footer></view-footer> 150 <view-footer></view-footer>
152 </template> 151 </template>
153 </polymer-element> 152 </polymer-element>
154 153
155 <script type="application/dart" src="code_view.dart"></script> 154 <script type="application/dart" src="code_view.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698