Amaya 9.52 WinXP possible bug: first p in td

Hi,

In Amaya 9.52 for Windows XP if the user writes some text in a table 
cell and presses Intro, a new paragraph is created, but the text already 
created is not included in a paragraph.

For example, if the user creates a table and types: "This is not a 
paragraph [Return]This is a paragraph", the source code would be:

<table border="1">
   <caption></caption>
   <tbody>
     <tr>
       <td>This is not a paragraph

         <p>This is a paragraph</p>
       </td>
     </tr>
   </tbody>
</table>

(I would prefer that the first text would be included in a paragraph, 
but it is a matter of taste)

If the user wants the first text included also in a paragraph, he can 
select it and choose XHTML > paragraph menu. The source code would be:

<table border="1">
   <caption></caption>
   <tbody>
     <tr>
       <td><p>This is not a paragraph</p>

         <p>This is a paragraph</p>
       </td>
     </tr>
   </tbody>
</table>

If the table is copied/cut and pasted, the first <p> mark is deleted 
(not the text). The source code would be again:

<table border="1">
   <caption></caption>
   <tbody>
     <tr>
       <td>This is not a paragraph

         <p>This is a paragraph</p>
       </td>
     </tr>
   </tbody>
</table>

Is there a reason for this behaviour or is it a bug?

Best regards,
Bartolomé Sintes (http://www.mclibre.org)

Received on Monday, 30 October 2006 18:14:23 UTC