blob: 3697b0570c24c084f24e919b2bfbc030e3127f87 [file] [log] [blame]
<!DOCTYPE html>
<textarea style="white-space:normal"></textarea>
<script>
// We should be able to type ' ' into a TEXTAREA with white-space:normal,
// and the result should be identical to another TEXTAREA with
// white-space:pre-wrap.
document.querySelector('textarea').focus();
eventSender.keyDown('a')
eventSender.keyDown(' ')
eventSender.keyDown('b')
eventSender.keyDown(' ')
</script>