| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 | <html> |
|---|
| 3 | <head> |
|---|
| 4 | <script src="../ckeditor.js"></script> |
|---|
| 5 | </head> |
|---|
| 6 | <body> |
|---|
| 7 | <table> |
|---|
| 8 | <tr> |
|---|
| 9 | <td> |
|---|
| 10 | <div id="editable" contenteditable="true" style="border:1px solid black;"><table><tr><td>testing table delete</td></tr></table></div> |
|---|
| 11 | </td> |
|---|
| 12 | </tr> |
|---|
| 13 | </table> |
|---|
| 14 | <script type="text/javascript"> |
|---|
| 15 | CKEDITOR.disableAutoInline = true; |
|---|
| 16 | var editor = CKEDITOR.inline( 'editable' , { |
|---|
| 17 | enterMode : CKEDITOR.ENTER_BR, |
|---|
| 18 | shiftEnterMode : CKEDITOR.ENTER_P, |
|---|
| 19 | docType : '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' |
|---|
| 20 | }); |
|---|
| 21 | </script> |
|---|
| 22 | </body> |
|---|
| 23 | </html> |
|---|