1
0
Fork 0
firefox/layout/reftests/css-placeholder/textarea/css-resize.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 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>