mirror of
https://github.com/servo/servo.git
synced 2025-10-03 18:19:14 +01:00
21 lines
374 B
HTML
21 lines
374 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>textarea does not take up more space than it takes up</title>
|
|
<link rel="match" href="textarea_space_calculation-ref.html">
|
|
<style>
|
|
textarea{height:2em;width:2em}
|
|
div{background:red;width:2em;font-size:12px;line-height:3px}
|
|
</style>
|
|
<h1>To pass, no red should be visible</h1>
|
|
<div>
|
|
<textarea>
|
|
1
|
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
8
|
|
9
|
|
</textarea>
|
|
</div>
|