Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * The default style sheet used to render HTML. | 2 * The default style sheet used to render HTML. |
| 3 * | 3 * |
| 4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 4 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 523 cursor: auto; | 523 cursor: auto; |
| 524 padding: 2px; | 524 padding: 2px; |
| 525 white-space: pre-wrap; | 525 white-space: pre-wrap; |
| 526 word-wrap: break-word; | 526 word-wrap: break-word; |
| 527 } | 527 } |
| 528 | 528 |
| 529 ::-webkit-input-placeholder { | 529 ::-webkit-input-placeholder { |
| 530 -webkit-text-security: none; | 530 -webkit-text-security: none; |
| 531 color: darkGray; | 531 color: darkGray; |
| 532 pointer-events: none !important; | 532 pointer-events: none !important; |
| 533 -webkit-user-select: none; | |
|
yosin_UTC9
2016/02/09 05:06:13
It is strange that we attempt to spell check "read
tkent
2016/02/09 05:09:26
I see. So, the following code in SpellChecker::adv
| |
| 533 } | 534 } |
| 534 | 535 |
| 535 input::-webkit-input-placeholder { | 536 input::-webkit-input-placeholder { |
| 536 line-height: initial; | 537 line-height: initial; |
| 537 white-space: pre; | 538 white-space: pre; |
| 538 word-wrap: normal; | 539 word-wrap: normal; |
| 539 overflow: hidden; | 540 overflow: hidden; |
| 540 -webkit-user-modify: read-only !important; | 541 -webkit-user-modify: read-only !important; |
| 541 } | 542 } |
| 542 | 543 |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1116 @page { | 1117 @page { |
| 1117 /* FIXME: Define the right default values for page properties. */ | 1118 /* FIXME: Define the right default values for page properties. */ |
| 1118 size: auto; | 1119 size: auto; |
| 1119 margin: auto; | 1120 margin: auto; |
| 1120 padding: 0px; | 1121 padding: 0px; |
| 1121 border-width: 0px; | 1122 border-width: 0px; |
| 1122 } | 1123 } |
| 1123 | 1124 |
| 1124 /* noscript is handled internally, as it depends on settings. */ | 1125 /* noscript is handled internally, as it depends on settings. */ |
| 1125 | 1126 |
| OLD | NEW |