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