style: Add -webkit-appearance:textarea and make that the default for <textarea> for compatibility with other UAs.

Bug: 1507905
Reviewed-by: jwatt
This commit is contained in:
Mats Palmgren 2018-11-21 22:05:20 +01:00 committed by Emilio Cobos Álvarez
parent 4f7a3ae533
commit 2ebad8de36

View file

@ -1155,10 +1155,11 @@ pub enum Appearance {
TabScrollArrowBack,
#[parse(condition = "in_ua_or_chrome_sheet")]
TabScrollArrowForward,
/// A textfield or text area.
/// A multi-line text field, e.g. HTML <textarea>.
#[parse(aliases = "textfield-multiline")]
Textarea,
/// A single-line text field, e.g. HTML <input type=text>.
Textfield,
/// A multiline text field.
TextfieldMultiline,
/// A toolbar in an application window.
#[parse(condition = "in_ua_or_chrome_sheet")]
Toolbar,