Bugs item #2884462, was opened at 2009-10-23 08:33
Message generated for change (Settings changed) made by asashour
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=448266&aid=2884462&group_id=47038Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: 2.6
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: dubium (dubium)
>Assigned to: Ahmed Ashour (asashour)
Summary: thead not at the top of a table goes missing
Initial Comment:
The attached code will produce the following output on the following two simple html tables. Note in the second table, the "6|Banana" row is missing.
---------------------------
6|Banana|
5|Bicycle|
3|John|
5|Bicycle|
3|John|
----------
<html><head><body>
<table id="table1">
<thead>
<tr>
<td>6</td>
<td>Banana</td>
</tr>
</thead>
<tr>
<td>5</td>
<td>Bicycle</td>
</tr>
<tr>
<td>3</td>
<td>John</td>
</tr>
</table>
<table id="table2">
<tr>
<td>5</td>
<td>Bicycle</td>
</tr>
<thead>
<tr>
<td>6</td>
<td>Banana</td>
</tr>
</thead>
<tr>
<td>3</td>
<td>John</td>
</tr>
</table>
</body></html>
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=448266&aid=2884462&group_id=47038------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference_______________________________________________
HtmlUnit-develop mailing list
HtmlUnit-develop@...
https://lists.sourceforge.net/lists/listinfo/htmlunit-develop