82e2d4cabc
Bug: https://github.com/dart-lang/sdk/issues/34107 Bug: https://github.com/dart-lang/sdk/issues/40574 Bug: https://github.com/catapult-project/catapult/issues/2489 Bug: https://bugs.chromium.org/p/chromium/issues/detail?id=1036492 Change-Id: I129e47fbca902e3487e9deaf5b3a213b23dea2ef Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/135534 Reviewed-by: Ben Konyi <bkonyi@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
31 lines
613 B
HTML
31 lines
613 B
HTML
<!DOCTYPE html>
|
|
<html style="height: 100%; width: 100%">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Dart VM Observatory Timeline</title>
|
|
<script src="timeline_message_handler.js"></script>
|
|
<script src="third_party/webcomponents.min.js"></script>
|
|
<link rel="import" href="third_party/trace_viewer_full.html">
|
|
<script src="timeline.js"></script>
|
|
<style>
|
|
html, body {
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
margin: 0px;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#trace-viewer {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#trace-viewer:focus {
|
|
outline: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|