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

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

Issue 1137523002: Make copying from script insets omit line numbers and breakpoint indicators. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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
« no previous file with comments | « runtime/observatory/lib/src/elements/script_inset.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <link rel="import" href="observatory_element.html">
3 3
4 <polymer-element name="script-inset" extends="observatory-element"> 4 <polymer-element name="script-inset" extends="observatory-element">
5 <template> 5 <template>
6 <style> 6 <style>
7 .sourceInset { 7 .sourceInset {
8 } 8 }
9 .sourceTable { 9 .sourceTable {
10 display: table; 10 display: table;
(...skipping 28 matching lines...) Expand all
39 width: 4em; 39 width: 4em;
40 text-align: right; 40 text-align: right;
41 color: #a8a8a8; 41 color: #a8a8a8;
42 } 42 }
43 .hitsNotExecuted { 43 .hitsNotExecuted {
44 background-color: #EEA7A7; 44 background-color: #EEA7A7;
45 } 45 }
46 .hitsExecuted { 46 .hitsExecuted {
47 background-color: #9BDD9B; 47 background-color: #9BDD9B;
48 } 48 }
49 49 .noCopy {}
50 .emptyBreakpoint, .possibleBreakpoint, .busyBreakpoint, .unresolvedBreakpo int, .resolvedBreakpoint { 50 .emptyBreakpoint, .possibleBreakpoint, .busyBreakpoint, .unresolvedBreakpo int, .resolvedBreakpoint {
51 display: table-cell; 51 display: table-cell;
52 vertical-align: top; 52 vertical-align: top;
53 font: 400 14px consolas, courier, monospace; 53 font: 400 14px consolas, courier, monospace;
54 width: 1em; 54 width: 1em;
55 text-align: center; 55 text-align: center;
56 cursor: pointer; 56 cursor: pointer;
57 } 57 }
58 .possibleBreakpoint { 58 .possibleBreakpoint {
59 color: #e0e0e0; 59 color: #e0e0e0;
(...skipping 13 matching lines...) Expand all
73 } 73 }
74 .resolvedBreakpoint { 74 .resolvedBreakpoint {
75 color: white; 75 color: white;
76 background-color: #e66; 76 background-color: #e66;
77 } 77 }
78 </style> 78 </style>
79 </template> 79 </template>
80 </polymer-element> 80 </polymer-element>
81 81
82 <script type="application/dart" src="script_inset.dart"></script> 82 <script type="application/dart" src="script_inset.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/script_inset.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698