blob: 66414ec8156d038f23d27ffccb1b19c11e2cb381 [file] [log] [blame]
<!DOCTYPE html>
<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>
</head>
<body>
<div class="explanation">
<div class="scenario">
Tests:
<br>
Smart deleting paragraph between two paragraphs in a pre element.
</div>
<div class="expected-results">
Expected Results:
<br>
The extra line should be removed when the paragraph is removed. It should like this:
<BR>
Test paragraph.
<BR>
<BR>
Last test paragraph.
</div>
</div>
<pre contenteditable id="root" class="editing" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;">
Test paragraph.
<br><span id="test">Test</span> paragraph to remove.
<br>Last test paragraph.
</pre>
<script src="../editing.js"></script>
<script src="../../resources/ui-helper.js"></script>
<script>
async function editingTest() {
internals.settings.setEditingBehavior("ios");
await UIHelper.selectWordByDoubleTapOrClick(document.getElementById('test'));
extendSelectionForwardByLineBoundaryCommand();
cutCommand();
}
runDumpAsTextEditingTest(true);
</script>
</body>
</html>