There seems to be some clipping on the scrollbar and border of the textarea:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8>
<title>Scrollbar and Border Clipping Issue in Webkit</title>
<style>
textarea,
iframe {
display: block;
width: 300px;
margin: 0;
padding: 0;
}
textarea {
height: 200px;
resize: none;
outline: 0;
border: solid red;
border-width: 0 0 5px;
}
iframe {
height: 0;
border: 0;
}
</style>
</head>
<body>
<textarea>
<p>Hello, world!</p>
...
</textarea>
<iframe srcdoc="<p>xxxxxxxxxxxxxxxxxxxxxx</p>"></iframe>
</body>
</html>
Curious about why this is happening and how to fix it?