I'm getting a strange behavior with textareas in chrome (linux and windows).
- Open this fiddle: http://jsfiddle.net/sonic1980/N4vUS/
- Copy the 3 lines of text into the textarea.
- Between each line multiple newlines appear.
Why? How can I avoid this?
The textarea has this style:
textarea {
white-space: nowrap;
height: 300px;
width: 250px;
}