blob: dcc7e86fd0e872c1fe0cf952d5f90842f4f4cdf6 [file]
<!DOCTYPE html>
<!--
Copyright 2019 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<!--
This file contains the subset of index.html required to run the debugger
screen in the flutter app. This file is used as part of a Flutter Web plugin
that loads the content.
-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="favicon.png" rel="icon" sizes="64x64">
<link href="packages/octicons_css/octicons_4.4.0.css" rel="stylesheet">
<link href="packages/polymer_css/flex.css" rel="stylesheet">
<link href="packages/devtools_app/src/debugger/debugger.css" rel="stylesheet">
<!-- TODO(djshuckerow): Support dark theme conditionally. -->
<link rel="stylesheet" href="packages/primer_css/primer_12.1.0.css">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="styles_light.css">
<style>
.container {
/* The Flutter app takes care of container sizing now.*/
margin-right: 0px;
margin-left: 0px;
}
</style>
<!-- TODO(https://github.com/flutter/devtools/issues/1181) remove this.-->
<script src="packages/ansi_up/ansi_up.js"></script>
<link href="packages/codemirror/codemirror.css" rel="stylesheet">
<script src="packages/codemirror/codemirror.js"></script>
<script type="text/javascript" src="packages/split/split.min.js"></script>
</head>
<body layout vertical style="width: 100%; height: 100%; background-color: transparent;">
<!--
TODO(https://github.com/flutter/devtools/issues/1259): If we can stop
depending on HtmlFramework in the debugging screen, remove the hidden layouts
here.
-->
<header flex wrap none class="masthead legacy-dart" id="header" layout horizontal hidden>
<a class="masthead-logo" id="title">
<span class="optional-550">Dart DevTools</span>
</a>
<div flex horiz-padding></div>
<nav class="masthead-nav" id="main-nav">
<!-- add the known pages -->
<a disabled>
<span class="octicon octicon-device-mobile"></span>
<span>
<span class="optional-1060">Flutter Inspector</span>
</span>
</a>
<a disabled>
<span class="octicon octicon-pulse"></span>
<span>
<span class="optional-1060">Timeline</span>
</span>
</a>
<a disabled>
<span class="octicon octicon-dashboard"></span>
<span>
<span class="optional-1060">Performance</span>
</span>
</a>
<a disabled>
<span class="octicon octicon-package"></span>
<span>
<span class="optional-1060">Memory</span>
</span>
</a>
<a disabled>
<span class="octicon octicon-bug"></span>
<span>
<span class="optional-1060">Debugger</span>
</span>
</a>
<a disabled>
<span class="octicon octicon-clippy"></span>
<span>
<span class="optional-1060">Logging</span>
</span>
</a>
</nav>
<div id="global-actions" class="masthead-nav"></div>
<div class="masthead-nav">
<span horiz-padding class="masthead-item"></span>
<div class="masthead-item action-button active" id="icon-nav">
<span class="octicon octicon-info"></span>
</div>
<div class="masthead-item action-button active" id="send-feedback-button" title="Send Feedback">
<span class="octicon octicon-comment"></span>
</div>
</div>
</header>
<div hidden id="messages-container" class="container legacy-dart"></div>
<form hidden id="ga-dialog" class="container legacy-dart"></form>
<form hidden id="connect-dialog" class="container legacy-dart"></form>
<form hidden id="snapshot-message" class="container legacy-dart"></form>
<div id="content" class="container legacy-dart" flex layout vertical style="overflow: auto;">
<div class="blankslate">
<p>Loading...</p>
</div>
</div>
<footer flex layout horizontal none class="footer align-items-center legacy-dart" hidden>
<div class="footer-status" id="global-status" flex>
<select class="form-select select-sm" disabled></select>
</div>
<div class="footer-status text-center" id="page-status" flex horiz-padding>
</div>
<div class="footer-status text-right" id="auxiliary-status" flex>
&nbsp;
</div>
</footer>
<div id="toast-container" class="legacy-dart">
</div>
</body>
</html>