This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 3270 - Validator Error
Summary: Validator Error
Status: RESOLVED INVALID
Alias: None
Product: Validator
Classification: Unclassified
Component: Parser (show other bugs)
Version: HEAD
Hardware: PC Windows XP
: P2 normal
Target Milestone: ---
Assignee: Terje Bless
QA Contact: qa-dev tracking
URL: http://www.acmlm.org/beta/
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-05-10 04:41 UTC by Joshua Franco
Modified: 2006-05-10 08:45 UTC (History)
0 users

See Also:


Attachments
Origional page source on which the report is based. (3.90 KB, text/html)
2006-05-10 05:12 UTC, Joshua Franco
Details

Description Joshua Franco 2006-05-10 04:41:02 UTC
Attempting to validate the site produces the error: Line 112 column 3: end tag for element "P" which is not open.

The element IS open. The code has been checked by 3 different people to be correct and it contains ZERO problems and yet the validator still seems to blindly insist there is a problem. Looking at the parse tree clearly shows that the <p> tag is being improperly read.
Comment 1 Joshua Franco 2006-05-10 05:12:23 UTC
Created attachment 426 [details]
Origional page source on which the report is based.

This is the origional page source upon which the report is based.
Comment 2 Robin Whittleton 2006-05-10 08:45:04 UTC
The p element cannot contain other block level elements ( see http://www.w3.org/TR/html4/struct/text.html#h-9.3.1 ) so in this case the validator is correct. A possible fix would be to remove the p and change the opening table tag to:

<table class='table center' cellspacing="0">

-> INVALID