Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
| 4 */ | 4 */ |
| 5 | 5 |
| 6 html, | 6 html, body { |
|
xiyuan
2015/04/15 17:10:47
nit: Specify one selector per line.
https://www.c
Tim Song
2015/04/15 19:42:07
Done.
| |
| 7 body, | 7 width: 100%; |
| 8 iframe { | |
| 9 height: 100%; | 8 height: 100%; |
| 10 margin: 0; | 9 margin: 0; |
| 11 padding: 0; | 10 padding: 0; |
| 12 width: 100%; | |
| 13 } | |
| 14 | |
| 15 iframe { | |
| 16 overflow: hidden; | 11 overflow: hidden; |
| 17 } | 12 } |
| 18 | 13 |
| 19 webview { | 14 canvas { |
| 20 display: inline-block; | 15 width: 100%; |
| 21 height: 100%; | 16 height: 100%; |
| 22 margin: 0; | 17 margin: 0; |
| 23 padding: 0; | |
| 24 width: 100%; | |
| 25 } | 18 } |
| OLD | NEW |