| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 // Copyright 2015 The Chromium Authors. All rights reserved. | 2 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 <import src="/sky/framework/sky-element.sky" /> | 6 <import src="/sky/framework/elements/sky-element.sky" /> |
| 7 <import src="/sky/framework/sky-scrollable.sky" /> | 7 <import src="/sky/framework/elements/sky-scrollable.sky" /> |
| 8 <sky-element> | 8 <sky-element> |
| 9 <template> | 9 <template> |
| 10 <style> | 10 <style> |
| 11 #control { | 11 #control { |
| 12 height: -webkit-fill-available; | 12 height: -webkit-fill-available; |
| 13 background-color: black; | 13 background-color: black; |
| 14 color: rgb(255, 191, 0); | 14 color: rgb(255, 191, 0); |
| 15 font-family: 'Courier', 'monospace'; | 15 font-family: 'Courier', 'monospace'; |
| 16 } | 16 } |
| 17 span { | 17 span { |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 | 106 |
| 107 var completer = new Completer<int>(); | 107 var completer = new Completer<int>(); |
| 108 _readerQueue.add(completer); | 108 _readerQueue.add(completer); |
| 109 return completer.future; | 109 return completer.future; |
| 110 } | 110 } |
| 111 } | 111 } |
| 112 | 112 |
| 113 _init(script) => register(script, TerminalDisplayImpl); | 113 _init(script) => register(script, TerminalDisplayImpl); |
| 114 </script> | 114 </script> |
| 115 </sky-element> | 115 </sky-element> |
| OLD | NEW |