I have a table that looks like this sample markup:
<table>
<tr>
<td colspan="2"></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
It renders like this sample layout:
----------------------------------------------
| |
----------------------------------------------
| |
----------------------------------------------
| | |
----------------------------------------------
| | |
----------------------------------------------
Nothing fancy. Pretty much a plain jane table. It renders fine in all out devices. Firefox, Safari, Chrome, Nokia, iPhone, BlackBerry, etc.
However, on the Motorola Xoom (Android 3.0.1) a weird thing happens. When the page initially renders, it looks fine. However, if I touch the screen in a non-active part, or 'jiggle' it with a tiny swipe on white space, the table re-renders instantly to this:
-----------------------
| |
-----------------------
| |
----------------------------------------------
| | |
----------------------------------------------
| | |
----------------------------------------------
And I have no clue as to why or how to fix it. It as if the cells with colspans suddenly lose their colspan setting.
Any theories as to what is going on? Or of any possible workarounds for this?