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

Side by Side Diff: mojo/spy/ui/spy.html

Issue 278703002: Initial mojo spy skeleton based on tvcm (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ready to land Created 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!--
2 Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 -->
6 <style>
7 x-spy-log-message {
8 display: block;
9 border-style: 1px solid black;
10 margin-top: 4px;
11 margin-bottom: 4px;
12 }
13
14 x-spy {
15 display: -webkit-flex;
16 -webkit-flex-direction: column;
17 }
18 x-spy > messages {
19 display: block;
20 -webkit-flex: 1 1 auto;
21 }
22 x-spy > form {
23 -webkit-flex: 0 0 auto;
24 }
25 x-spy > form > input {
26 width: 300px;
27 }
28 </style>
29
30
31 <template id="x-spy-template">
32 <messages>
33 </messages>
34 <input type="text" id="command" placeholder="enter spy command + enter" />
35 </template>
36
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698