justing | a4e338f | 2005-09-29 07:47:09 +0000 | [diff] [blame] | 1 | <html> |
| 2 | <head> |
| 3 | |
| 4 | <link rel=stylesheet href="../editingStyle.css" type="text/css"> |
| 5 | <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script> |
| 6 | |
| 7 | <script> |
| 8 | |
| 9 | function editingTest() { |
| 10 | extendSelectionForwardByLineCommand(); |
| 11 | moveSelectionForwardByCharacterCommand(); |
| 12 | moveSelectionBackwardByCharacterCommand(); |
| 13 | extendSelectionBackwardByLineCommand(); |
| 14 | copyCommand(); |
| 15 | deleteCommand(); |
| 16 | pasteAndMatchStyleCommand(); |
| 17 | |
| 18 | } |
| 19 | |
| 20 | </script> |
| 21 | |
| 22 | <title>Pasting plain text loses leading/trailing whitespace</title> |
| 23 | </head> |
| 24 | <body> |
| 25 | |
| 26 | <p>This tests to see if trailing spaces are lost during a copy/paste</p> |
| 27 | |
| 28 | <hr> |
| 29 | |
| 30 | <div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;"> |
| 31 | <div id="test" class="editing">there should be a single trailing space between the '.' and the last character in this sentence .</div> |
| 32 | </div> |
| 33 | |
| 34 | <script> |
| 35 | runEditingTest(); |
| 36 | </script> |
| 37 | |
| 38 | </body> |
| 39 | </html> |