gecko-dev/layout/reftests/css-placeholder/textarea/css-resize.html

21 строка
412 B
HTML

<!DOCTYPE html>
<html>
<!--
resize shouldn't be allowed on the ::placeholder.
-->
<link rel='stylesheet' type='text/css' href='style.css'>
<style>
textarea {
resize: none;
}
textarea::-moz-placeholder,
textarea::placeholder {
resize: both;
}
</style>
<body>
<textarea placeholder='foo'></textarea>
<textarea placeholder='bar'></textarea>
</body>
</html>