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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html

Issue 194503006: Code view tweaks and crasher fix (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
1 <head> 1 <head>
2 <link rel="import" href="observatory_element.html"> 2 <link rel="import" href="observatory_element.html">
3 </head> 3 </head>
4 <polymer-element name="disassembly-entry" extends="observatory-element"> 4 <polymer-element name="disassembly-entry" extends="observatory-element">
5 <template> 5 <template>
6 <style> 6 <style>
7 .monospace { 7 .monospace {
8 font-family: consolas, courier, monospace; 8 font-family: consolas, courier, monospace;
9 font-size: 1em; 9 font-size: 1em;
10 line-height: 1.2em; 10 line-height: 1.2em;
11 white-space: nowrap; 11 white-space: nowrap;
12 } 12 }
13 </style> 13 </style>
14 <div class="row"> 14 <div class="row">
15 <div class="col-md-2 monospace">{{ instruction.formattedAddress() }}</div>
16 <div class="col-md-2 monospace">{{ instruction.formattedInclusive(code) }} </div> 15 <div class="col-md-2 monospace">{{ instruction.formattedInclusive(code) }} </div>
17 <div class="col-md-2 monospace">{{ instruction.formattedExclusive(code) }} </div> 16 <div class="col-md-2 monospace">{{ instruction.formattedExclusive(code) }} </div>
17 <div class="col-md-2 monospace">{{ instruction.formattedAddress() }}</div>
18 <div class="col-md-6 monospace">{{ instruction.human }}</div> 18 <div class="col-md-6 monospace">{{ instruction.human }}</div>
19 </div> 19 </div>
20 </template> 20 </template>
21 <script type="application/dart" src="disassembly_entry.dart"></script> 21 <script type="application/dart" src="disassembly_entry.dart"></script>
22 </polymer-element> 22 </polymer-element>
OLDNEW
« no previous file with comments | « runtime/bin/vmservice/client/lib/src/elements/code_view.html ('k') | runtime/bin/vmservice/client/lib/src/service/object.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698