rniwa@webkit.org | ab85a0d | 2011-12-09 00:15:26 +0000 | [diff] [blame] | 1 | <!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). |
| 5 | WebKit 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.org | 14f6b5b | 2012-06-13 08:51:53 +0000 | [diff] [blame] | 10 | if (window.testRunner) |
| 11 | testRunner.dumpAsText(); |
rniwa@webkit.org | ab85a0d | 2011-12-09 00:15:26 +0000 | [diff] [blame] | 12 | |
| 13 | var textarea = document.querySelector('textarea'); |
| 14 | textarea.value = "\nwebkit"; |
| 15 | textarea.style.display = ""; |
| 16 | |
| 17 | textarea.focus(); |
| 18 | textarea.selectionStart = textarea.selectionEnd = 0; |
| 19 | document.execCommand('insertHTML', false, 'hello\nworld\n'); |
| 20 | |
| 21 | var expected = 'hello\nworld\nwebkit'; |
| 22 | if (textarea.value == expected) |
| 23 | document.getElementById('log').innerText = 'PASS'; |
| 24 | else |
| 25 | document.getElementById('log').innerText = 'FAILED: expected "' + expected + '" but got "' + textarea.value + '"'; |
| 26 | |
| 27 | </script> |
| 28 | </body> |
| 29 | </html> |