Opened 16 years ago
Last modified 10 years ago
#3140 confirmed Bug
Indent problem with whole table — at Version 1
Reported by: | Garry Yao | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.0 Beta 2 |
Keywords: | Support | Cc: |
Description (last modified by )
Currently it's been unable to apply indent to the whole table.
- Make the content and selection as below:
^<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr> <td> <br /> </td> </tr> </tbody> </table>^
- Apply the Indent command;
- Expected Result:
<p style="margin-left: 40px;"> <table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr> <td> <p> </p> </td> </tr> </tbody> </table> </p>
- Actual Result:
<table border="1" cellpadding="1" cellspacing="1" style="width: 200px;"> <tbody> <tr> <td> <p> </p> </td> </tr> </tbody> </table> <p style="margin-left: 40px;"> </p>
Change History (1)
comment:1 Changed 16 years ago by
Description: | modified (diff) |
---|---|
Summary: | Table level operation problem → Indent problem with whole table |