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

Unified Diff: runtime/observatory/lib/src/elements/nav_bar.html

Issue 1833453004: Dramatically increase the performance of Observatory's profile UI (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/nav_bar.html
diff --git a/runtime/observatory/lib/src/elements/nav_bar.html b/runtime/observatory/lib/src/elements/nav_bar.html
index 4299d0cbdcdffca68ba80263ac6cdf916bcf8fab..983f8afaea2ca21833857cdf49aa534154f3ef74 100644
--- a/runtime/observatory/lib/src/elements/nav_bar.html
+++ b/runtime/observatory/lib/src/elements/nav_bar.html
@@ -386,7 +386,7 @@
margin-top: 10px;
margin-right: 10px;
padding-right: 25px;
- width: 250px;
+ width: 500px;
color: #ddd;
background: rgba(0,0,0,.6);
border: solid 2px white;
@@ -428,6 +428,9 @@
a.boxclose:hover {
background: rgba(255,255,255,0.5);
}
+ .stacktrace {
+ white-space: pre
+ }
</style>
<template if="{{ isUnexpectedError }}">
<!-- TODO(turnidge): Add a file-a-bug link to this notification -->
@@ -436,7 +439,7 @@
<div class="indent">{{ exception.toString() }}</div><br>
<template if="{{ stacktrace != null }}">
Stacktrace:<br><br>
- <div class="indent">{{ stacktrace.toString() }}</div>
+ <div class="indent stacktrace">{{ stacktrace.toString() }}</div>
<br>
</template>
[<a class="link" on-click="{{ goto }}"
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698