gecko-dev/layout/reftests/css-placeholder/textarea/css-resize.html
2016-09-07 19:38:38 -04:00

21 lines
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>