OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 Copyright 2014 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 html, body { |
| 8 margin: 0; |
| 9 padding: 0; |
| 10 width: 100%; |
| 11 height: 100%; |
| 12 display: -webkit-flex; |
| 13 -webkit-flex-direction: column; |
| 14 } |
| 15 body > x-spy-shell { |
| 16 -webkit-flex: 1 1 auto; |
| 17 } |
| 18 |
| 19 x-spy-shell { |
| 20 display: -webkit-flex; |
| 21 -webkit-flex-direction: column; |
| 22 } |
| 23 |
| 24 x-spy-shell > #status { |
| 25 -webkit-flex: 0 0 auto; |
| 26 border-bottom: 1px solid black; |
| 27 } |
| 28 |
| 29 x-spy-shell > x-spy { |
| 30 -webkit-flex: 1 1 auto; |
| 31 } |
| 32 </style> |
| 33 |
| 34 |
| 35 <template id="x-spy-shell-template"> |
| 36 <div id="status"></div> |
| 37 <x-spy></x-spy> |
| 38 </template> |
| 39 |
OLD | NEW |