blob: 7483b6f243811f37c91788285e3fcd6e2024b1cc [file] [log] [blame]
<html>
<head>
<style>
.editing {
border: 2px solid red;
font-size: 24px;
}
.explanation {
border: 2px solid blue;
padding: 12px;
font-size: 24px;
margin-bottom: 24px;
}
.scenario { margin-bottom: 16px;}
.scenario:first-line { font-weight: bold; margin-bottom: 16px;}
.expected-results:first-line { font-weight: bold }
</style>
<script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
<script>
function editingTest() {
for (i = 0; i < 8; i++)
moveSelectionForwardByCharacterCommand();
for (i = 0; i < 2; i++)
extendSelectionForwardByCharacterCommand();
copyCommand();
pasteCommand();
}
</script>
<title>Editing Test</title>
</head>
<body>
<div class="explanation">
<div class="scenario">
Tests:
<br>
Fix for this bug:
<a href="rdar://problem/4045513">&lt;rdar://problem/4045513&gt;</a> Copying and pasting selection starting at end of paragraph can incorrectly remove line break
</div>
<div class="expected-results">
Expected Results:
<br>
Should see two lines of text below, self-documenting themselves as "line one" and "line two". The insertion point must
be after the first character ("l") of "line two".
</div>
</div>
<div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;">
<div id="test" class="editing">
line one<br>line two
</div>
</div>
<script>
runEditingTest();
</script>
</body>
</html>