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

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

Issue 839543002: Revert "Build Observatory with runtime" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="curly_block.html">
3 <link rel="import" href="observatory_element.html">
4 <link rel="import" href="service_ref.html">
5
6 <polymer-element name="error-ref" extends="service-ref">
7 <template>
8 <link rel="stylesheet" href="css/shared.css">
9 <style>
10 .errorBox {
11 background-color: #f5f5f5;
12 border: 1px solid #ccc;
13 padding: 10px;
14 font-family: consolas, courier, monospace;
15 font-size: 1em;
16 line-height: 1.2em;
17 white-space: pre;
18 }
19 </style>
20 <span>
21 <pre class="errorBox">{{ ref.kind }}: {{ ref.message }}</pre>
22 </span>
23 </template>
24 </polymer-element>
25
26 <script type="application/dart" src="error_ref.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/error_ref.dart ('k') | runtime/observatory/lib/src/elements/error_view.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698