blob: 2bc8e9a40004a93f58272db74b2f482dc8dbca66 [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();
extendSelectionForwardByCharacterCommand();
deleteCommand();
}
</script>
<title>Editing Test</title>
</head>
<body contenteditable="true">
<div class="explanation">
Should see "X" 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>