list-type-after.html   [plain text]


<html> 
<head>

<style>
.editing { 
    border: 2px solid red; 
    font-size: 24px; 
}
.explanation { 
    border: 4px solid blue; 
    padding: 16px; 
    font-size: 18px; 
    margin-bottom: 10px;
}
.scenario:first-line { font-weight: bold; font-size: 24px; }
.expected:first-line { font-weight: bold; font-size: 24px; }
.results { margin-bottom: 10px; border: 2px solid green; font-size: 24px; }
</style>
<script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>

<script>

function editingTest() {
    for (i = 0; i < 3; i++)
        moveSelectionForwardByLineCommand();
    for (i = 0; i < 3; i++)
        typeCharacterCommand("x");
}

</script>

<title>Editing Test</title> 
</head> 
<body>

<div class="explanation">
<div class="scenario">
Tests: 
<br>
Our ability to "edit around" content the HTML editing code does not yet handle very well.
<br><i>For this test: </i>Test typing at the end of a list.
</div>
<br>
<div class="expected">
Expected Results:
<br>
The content in the red box must exactly match the content in the green box (except for the border color).
<br><i>For this test: </i>Typed text should appear after (on the line below) the list.
</div>
</div>

<div class="results">
<ul>
<li>line one</li>
<li>line two</li>
<li>line three</li>
</ul>
xxx
</div>

<div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;">
<div id="test" class="editing">
<ul>
<li>line one</li>
<li>line two</li>
<li>line three</li>
</ul>
</div>
</div>

<script>
runEditingTest();
</script>

</body>
</html>