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

Side by Side Diff: runtime/observatory/web/timeline.html

Issue 1972523003: Improve Observatory Timeline UI (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html style="height: 100%; width: 100%"> 2 <html style="height: 100%; width: 100%">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Dart VM Observatory Timeline</title> 5 <title>Dart VM Observatory Timeline</title>
6 <script src="timeline_message_handler.js"></script>
7 <link rel="import" href="third_party/trace_viewer_full.html">
6 <script src="timeline.js"></script> 8 <script src="timeline.js"></script>
7 <link rel="import" href="third_party/trace_viewer_full.html">
8 <style> 9 <style>
9 html, body { 10 html, body {
10 box-sizing: border-box; 11 box-sizing: border-box;
11 overflow: hidden; 12 overflow: hidden;
12 margin: 0px; 13 margin: 0px;
13 padding: 0; 14 padding: 0;
14 width: 100%; 15 width: 100%;
15 height: 100%; 16 height: 100%;
16 } 17 }
17 #trace-viewer { 18 #trace-viewer {
18 width: 100%; 19 width: 100%;
19 height: 100%; 20 height: 100%;
20 } 21 }
21 #trace-viewer:focus { 22 #trace-viewer:focus {
22 outline: none; 23 outline: none;
23 } 24 }
24 </style> 25 </style>
25 </head> 26 </head>
26 <body> 27 <body>
27 </body> 28 </body>
28 </html> 29 </html>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/timeline_page.html ('k') | runtime/observatory/web/timeline.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698