Anchor inserted at incorrect position

  •  01-07-2009, 10:01 AM

    Anchor inserted at incorrect position

    Steps to reproduce
    1. Use http://cutesoft.net/example/general.aspx
    2. Switch to HTML mode
    3. Enter the following:
      <p>beginning text</p><p><a id="anch1" name="anch1"></a>text between anchors<a id="anch2" name="anch2"></a></p>
    4. Switch to Normal mode
    5. Position the cursor after "beginning text"
    6. Drop another Anchor (anch3).
    7. Switch to HTML mode
    8. anch3 is incorrectly inserted after anch1 on the 2nd line
    Actual results
    <p>beginning text</p>
    <p><a id="anch1" name="anch1"></a><a id="anch3" name="anch3"></a>text between anchors<a id="anch2" name="anch2"></a></p>
     
    Expected results
    <p>beginning text<a id="anch3" name="anch3"></a></p>
    <p><a id="anch1" name="anch1"></a>text between anchors<a id="anch2" name="anch2"></a></p>
     
    Is this a known issue that is planned to be corrected in the next release?
     
    Thanks.

     
View Complete Thread