blob: 75d97b921b67d8a24761370197662c804fa084ff [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<p id="description">This tests deleting line break after h1.
WebKit should not cancel styles added by h1 by those of document's default style</p>
<div id="test" contenteditable>
<h1>hello</h1>
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>