Completed
Last Updated: 25 Apr 2017 12:45 by ADMIN
ADMIN
Vessy
Created on: 06 Feb 2017 08:18
Category: Editor
Type: Bug Report
0
Deleting the first char of a list item removes the li element instead of the char
Deleting the fisrt char of a list item removes the li element instead of the char (using Delete button). 

The issue is introduced in Q1 2016.


Steps to reproduce:
1. Open http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
2. Insert the following content in html mode:
 <ol>
    <li>123</li>
    <li>456</li>
</ol>

3. Switch to Design mode and click in the begining of the second list item (befor 4).
4. Press the Delete key

Result:
<ol>
    <li>123456</li>
</ol>

Expected
 <ol>
    <li>123</li>
    <li>56</li>
</ol>
0 comments