Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 2 <link rel="import" href="curly_block.html"> | 2 <link rel="import" href="curly_block.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
| 4 <link rel="import" href="service_ref.html"> | 4 <link rel="import" href="service_ref.html"> |
| 5 | 5 |
| 6 <polymer-element name="instance-ref" extends="service-ref"> | 6 <polymer-element name="instance-ref" extends="service-ref"> |
| 7 <template> | 7 <template> |
| 8 <link rel="stylesheet" href="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
| 9 <style> | 9 <style> |
| 10 .errorBox { | 10 .errorBox { |
| 11 background-color: #f5f5f5; | 11 background-color: #f5f5f5; |
| 12 border: 1px solid #ccc; | 12 border: 1px solid #ccc; |
| 13 padding: 10px; | 13 padding: 10px; |
| 14 font-family: consolas, courier, monospace; | 14 font-family: consolas, courier, monospace; |
| 15 font-size: 1em; | 15 font-size: 1em; |
| 16 line-height: 1.2em; | 16 line-height: 1.2em; |
| 17 white-space: pre; | 17 white-space: pre; |
| 18 } | 18 } |
| 19 </style> | 19 </style> |
| 20 <span> | 20 <span> |
| 21 <template if="{{ ref.isSentinel }}"> | 21 <template if="{{ ref.isSentinel }}"> |
| 22 <div title="{{ hoverText }}">{{ ref.valueAsString }}</div> | 22 <div title="{{ hoverText }}">{{ ref.valueAsString }}</div> |
| 23 </template> | 23 </template> |
| 24 | 24 |
| 25 <template if="{{ ref.isString || ref.isBool || ref.isInt || ref.isDouble | | ref.isNull }}"> | 25 <template if="{{ ref.isBool || ref.isInt || ref.isDouble || ref.isNull }}" > |
| 26 <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.valueAsString }}</a> | 26 <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.valueAsString }}</a> |
| 27 </template> | 27 </template> |
| 28 | 28 |
| 29 <template if="{{ ref.isString }}"> | |
| 30 <a on-click="{{ goto }}" _href="{{ url }}">{{ asStringLiteral(ref.valueA sString, ref.valueAsStringIsTruncated) }}</a> | |
|
turnidge
2014/09/09 16:12:31
I suppose we could actually make the "..." be a li
| |
| 31 </template> | |
| 32 | |
| 29 <template if="{{ ref.isType }}"> | 33 <template if="{{ ref.isType }}"> |
| 30 <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.name }}</a> | 34 <a on-click="{{ goto }}" _href="{{ url }}">{{ ref.name }}</a> |
| 31 </template> | 35 </template> |
| 32 | 36 |
| 33 <template if="{{ ref.isClosure }}"> | 37 <template if="{{ ref.isClosure }}"> |
| 34 <a on-click="{{ goto }}" _href="{{ url }}"> | 38 <a on-click="{{ goto }}" _href="{{ url }}"> |
| 35 <!-- TODO(turnidge): Switch this to fully-qualified function --> | 39 <!-- TODO(turnidge): Switch this to fully-qualified function --> |
| 36 {{ ref.closureFunc.name }} | 40 {{ ref.closureFunc.name }} |
| 37 </a> | 41 </a> |
| 38 </template> | 42 </template> |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 102 </div> | 106 </div> |
| 103 </div> | 107 </div> |
| 104 </div> | 108 </div> |
| 105 </curly-block> | 109 </curly-block> |
| 106 </template> | 110 </template> |
| 107 </span> | 111 </span> |
| 108 </template> | 112 </template> |
| 109 </polymer-element> | 113 </polymer-element> |
| 110 | 114 |
| 111 <script type="application/dart" src="instance_ref.dart"></script> | 115 <script type="application/dart" src="instance_ref.dart"></script> |
| OLD | NEW |