Hide overflow of <input>, fix #9477

This commit is contained in:
Simon Sapin 2016-03-04 19:48:19 +01:00
parent 142610265e
commit 79656278f2

View file

@ -31,5 +31,9 @@ td[align="right"] { text-align: right; }
center { text-align: -servo-center; } center { text-align: -servo-center; }
input:not([type=radio i]):not([type=checkbox i]):not([type=reset i]):not([type=button i]):not([type=submit i]), input:not([type=radio i]):not([type=checkbox i]):not([type=reset i]):not([type=button i]):not([type=submit i]),
textarea { cursor: text } textarea {
cursor: text;
overflow: hidden;
-servo-overflow-clip-box: content-box;
}