haikuwebkit/LayoutTests/editing/deleting/merge-paragraph-into-h1-wit...

27 lines
641 B
HTML

<!DOCTYPE html>
<html>
<body>
<p id="description">This tests deleting line break after h1 inside a block with dir attribute.
WebKit should not add direction or unicode-bidi properties while merging paragraphs.</p>
<div id="test" dir="ltr" contenteditable>
<h1>hello</h1>
<p>world</p>
</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>