blob: 69677bb07ab8f1e7dd71b3eca696a24ba18d0bf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<body>
<p>This test ensures padding inside input and textarea elements match.</p>
<style type="text/css">
textarea {
display: block;
font-family: arial,sans-serif;
border: none;
padding: 0 0 0 10px;
margin: 0;
resize: none;
width: 20px;
overflow: hidden;
}
</style>
<textarea>|</textarea>
</body>
</html>
|