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

Side by Side Diff: runtime/observatory/lib/src/elements/script_inset.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="observatory_element.html"> 2
3 3
4 <polymer-element name="icon-refresh" noscript> 4 <polymer-element name="icon-refresh" noscript>
5 <template> 5 <template>
6 <style> 6 <style>
7 svg { 7 svg {
8 fill: currentColor 8 fill: currentColor
9 } 9 }
10 </style> 10 </style>
11 <svg width="24" height="24"> 11 <svg width="24" height="24">
12 <path d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s 2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/> 12 <path d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s 2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/>
13 </svg> 13 </svg>
14 </template> 14 </template>
15 </polymer-element> 15 </polymer-element>
16 16
17 <polymer-element name="icon-whatshot" noscript> 17 <polymer-element name="icon-whatshot" noscript>
18 <template> 18 <template>
19 <style> 19 <style>
20 svg { 20 svg {
21 fill: currentColor 21 fill: currentColor
22 } 22 }
23 </style> 23 </style>
24 <svg width="24" height="24"> 24 <svg width="24" height="24">
25 <path d="M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1 .67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.6 1 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3 .12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z "></path> 25 <path d="M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1 .67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.6 1 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3 .12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z "></path>
26 </svg> 26 </svg>
27 </template> 27 </template>
28 </polymer-element> 28 </polymer-element>
29 29
30 <polymer-element name="script-inset" extends="observatory-element"> 30 <polymer-element name="script-inset">
31 <template> 31 <template>
32 <style> 32 <style>
33 a { 33 a {
34 color: #0489c3; 34 color: #0489c3;
35 text-decoration: none; 35 text-decoration: none;
36 } 36 }
37 a:hover { 37 a:hover {
38 text-decoration: underline; 38 text-decoration: underline;
39 } 39 }
40 .sourceInset { 40 .sourceInset {
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 height="{{ height }}" 214 height="{{ height }}"
215 currentPos="{{ currentPos }}" 215 currentPos="{{ currentPos }}"
216 inDebuggerContext="{{ inDebuggerContext }}" 216 inDebuggerContext="{{ inDebuggerContext }}"
217 variables="{{ variables }}"> 217 variables="{{ variables }}">
218 </script-inset> 218 </script-inset>
219 </template> 219 </template>
220 </template> 220 </template>
221 </polymer-element> 221 </polymer-element>
222 222
223 <script type="application/dart" src="script_inset.dart"></script> 223 <script type="application/dart" src="script_inset.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/ports.html ('k') | runtime/observatory/lib/src/elements/script_ref.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698