haikuwebkit/LayoutTests/editing/deleting/merge-paragraph-into-pre.html

27 lines
591 B
HTML

<!DOCTYPE html>
<html>
<body>
<p id="description">This tests deleting line break after pre.
WebKit should not cancel styles added by pre by those of document's default style.</p>
<div id="test" contenteditable>
<pre>hello</pre>
world
</div>
</div>
<script src="../editing.js"></script>
<script src="../../resources/dump-as-markup.js"></script>
<script>
function editingTest() {
moveSelectionForwardByLineCommand();
deleteCommand();
Markup.description(document.getElementById('description').textContent);
Markup.dump('test');
}
runEditingTest();
</script>
</body>
</html>