Files
ladybird/Tests/LibWeb/Layout/input/textarea-height-stretch.html
Jonathan Gamble d3cdeb3ac5 LibWeb: Implement auto_content_box_size for textarea and input
This allows default and attribute-based sizing when an axis is auto,
without overriding extrinsic sizing.
2026-02-02 14:36:49 +00:00

16 lines
280 B
HTML

<!DOCTYPE html>
<head>
<style>
.stretch {
display: flex;
height: 200px;
background: red;
}
</style>
</head>
<body>
<div class="stretch"><textarea></textarea></div>
<textarea rows="10"></textarea>
<textarea cols="60"></textarea>
</body>