blob: c1c337fc459d7c176e3f4e2100d9059c83d3cbd6 [file] [log] [blame]
rniwa@webkit.orgab85a0d2011-12-09 00:15:26 +00001<!DOCTYPE html>
2<html>
3<body>
4<p>This tests pasting into a textarea that starts with a line break that didn't initially have a renderer (display: none).
5WebKit should still be able to paste text with line breaks.</p>
6<textarea id="test" style="display: none" cols="50" rows="10"></textarea>
7<div id="log"></div>
8<script type="text/javascript">
9
rniwa@webkit.org14f6b5b2012-06-13 08:51:53 +000010if (window.testRunner)
11 testRunner.dumpAsText();
rniwa@webkit.orgab85a0d2011-12-09 00:15:26 +000012
13var textarea = document.querySelector('textarea');
14textarea.value = "\nwebkit";
15textarea.style.display = "";
16
17textarea.focus();
18textarea.selectionStart = textarea.selectionEnd = 0;
19document.execCommand('insertHTML', false, 'hello\nworld\n');
20
21var expected = 'hello\nworld\nwebkit';
22if (textarea.value == expected)
23 document.getElementById('log').innerText = 'PASS';
24else
25 document.getElementById('log').innerText = 'FAILED: expected "' + expected + '" but got "' + textarea.value + '"';
26
27</script>
28</body>
29</html>