Opened 15 years ago
Closed 15 years ago
#4199 closed Bug (duplicate)
[Safari] Click outside table result weird
Reported by: | Garry Yao | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.1 |
Component: | Core : Styles | Version: | |
Keywords: | Safari | Cc: |
Description
Reproducing Procedures
- Open the 'replace by class' sample page in Safari;
- Load the following content:
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px; "> <tbody> <tr> <td> </td> <td> </td> </tr> </tbody> </table>
- Click at the spaces before the table( outside );
- Actual Result:
<p> </p> <table border="1" cellpadding="1" cellspacing="1" style="width: 200px; "> <tbody> <tr> <td> </td> <td> </td> </tr> </tbody> </table> <p> </p> <table border="1" cellpadding="1" cellspacing="1" style="width: 200px; "> </table>
- Expected Result:
<p> </p> <table border="1" cellpadding="1" cellspacing="1" style="width: 200px; "> <tbody> <tr> <td> </td> <td> </td> </tr> </tbody> </table>
- Actual Result:
The same error in IE (only visible in source mode).