Page 1 of 1

Issue validating a webpage with latest pro edition

Posted: Thu Sep 16, 2010 5:04 am
by ajtruckle
Hello

Here is a snippet of some code on my webpage (which I confirm is correct by viewing the source in the web browser):

Code: Select all

		<div id="footer-search">
			<form method="post" action="search.php">
				<table style="padding:0px;">
				<tr>

					<td style="height: 25px; margin:0px;padding:0px;">
						<input name="txtSearch" style="width: 100px" type="text" tabindex="1" />
					</td>
					<td style="height: 25px">
						<input name="btnSearch" type="submit" value="Search" tabindex="2" />
					</td>
				</tr>
				</table>
			</form>

		</div>
But when I use the validator software to display this page, and then use it's validation command, it raised an error:
The "td" element must have an end tag (</td>) but the end tag was not found. In XHTML, all elements not declared as empty (like "b", "p", "span", etc.) must have an end tag. Elements declared as empty (like "br", "img", "input", etc.) can have an end tag or can use the empty element shorthand.
I looked at the code inside the validator software:

Code: Select all

		<div id="footer-search">
			<form method="post" action="search.php">
				<table style="padding:0px;">
				<tr>
					<td style="height: 25px; margin:0px;padding:0px;">
						<input name="txtSearch" style="width: 100px" type="text" tabindex="1" />
					</td>
					<td style="height: 25px">
						<input name="btnSearch" type="submit" value="Search" tabindex="2" />
					<td>
				</tr>
				</table>
			</form>
		</div>
The </td> tag has become a <td> tag. Why?

Re: Issue validating a webpage with latest pro edition

Posted: Thu Sep 16, 2010 9:03 am
by Albert Wiersch
That's strange. I have no idea why the end tag seems to change into a start tag.

Can you tell me how I could reproduce/replicate this problem on my system?

Re: Issue validating a webpage with latest pro edition

Posted: Thu Sep 16, 2010 9:06 am
by ajtruckle
I just tried to validate a webpage again and this time the error did not happen. I will keep an eye on it.