blob: 7ed224b6b66d85938c8c9b2d2d4b7719be20f275 [file] [log] [blame]
<html>
<head>
<style>
.editing {
border: 2px solid red;
padding: 12px;
font-size: 24px;
}
.explanation {
border: 2px solid blue;
padding: 12px;
font-size: 24px;
margin-bottom: 24px;
}
</style>
<script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
<script>
function editingTest() {
extendSelectionForwardByLineCommand();
extendSelectionForwardByLineCommand();
deleteCommand();
}
</script>
<title>Editing Test</title>
</head>
<body contenteditable="true">
<div class="explanation">
Should see "XX" in a yellow box nested in a red box.
</div>
<div id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;">
<div id="test" class="editing">
AA
<div style="border-style:solid; border-color: yellow;">
should not see this content<div>XX</div></div>
</div>
</div>
</div>
<script>
runEditingTest();
</script>
</body>
</html>