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

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

Issue 2119733003: Wrapping leaf nodes in non polymer elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Converted script-link 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 <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">
7 <link rel="import" href="view_footer.html">
8 6
9 <polymer-element name="code-view" extends="observatory-element"> 7 <polymer-element name="code-view" extends="observatory-element">
10 <template> 8 <template>
11 <link rel="stylesheet" href="css/shared.css"> 9 <link rel="stylesheet" href="css/shared.css">
12 <style> 10 <style>
13 .table { 11 .table {
14 table-layout: fixed; 12 table-layout: fixed;
15 } 13 }
16 14
17 th:nth-of-type(1), td:nth-of-type(1) { 15 th:nth-of-type(1), td:nth-of-type(1) {
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 </thead> 148 </thead>
151 <tbody class="monospace" id="disassemblyTableBody"> 149 <tbody class="monospace" id="disassemblyTableBody">
152 </tbody> 150 </tbody>
153 </table> 151 </table>
154 </div> 152 </div>
155 <view-footer></view-footer> 153 <view-footer></view-footer>
156 </template> 154 </template>
157 </polymer-element> 155 </polymer-element>
158 156
159 <script type="application/dart" src="code_view.dart"></script> 157 <script type="application/dart" src="code_view.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698