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

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

Issue 2180553002: Converted Observatory source-link & script-ref elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Removed references from other elements Created 4 years, 5 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 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">
7 6
8 <polymer-element name="code-view"> 7 <polymer-element name="code-view">
9 <template> 8 <template>
10 <link rel="stylesheet" href="css/shared.css"> 9 <link rel="stylesheet" href="css/shared.css">
11 <style> 10 <style>
12 .table { 11 .table {
13 table-layout: fixed; 12 table-layout: fixed;
14 } 13 }
15 14
16 th:nth-of-type(1), td:nth-of-type(1) { 15 th:nth-of-type(1), td:nth-of-type(1) {
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 </thead> 149 </thead>
151 <tbody class="monospace" id="disassemblyTableBody"> 150 <tbody class="monospace" id="disassemblyTableBody">
152 </tbody> 151 </tbody>
153 </table> 152 </table>
154 </div> 153 </div>
155 <view-footer></view-footer> 154 <view-footer></view-footer>
156 </template> 155 </template>
157 </polymer-element> 156 </polymer-element>
158 157
159 <script type="application/dart" src="code_view.dart"></script> 158 <script type="application/dart" src="code_view.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698