Issue #377 - Table summary attribute also applies to XHTML5

This commit is contained in:
Geoff McLane 2016-02-29 19:58:55 +01:00
parent 9a80938246
commit 7bdc31af76
1 changed files with 2 additions and 1 deletions

View File

@ -924,7 +924,8 @@ void CheckTABLE( TidyDocImpl* doc, Node *node )
{
AttVal* attval;
Bool HasSummary = (TY_(AttrGetById)(node, TidyAttr_SUMMARY) != NULL) ? yes : no;
Bool isHTML5 = (TY_(HTMLVersion)(doc) == HT50) ? yes : no;
uint vers = TY_(HTMLVersion)(doc); /* Issue #377 - Also applies to XHTML5 */
Bool isHTML5 = ((vers == HT50)||(vers == XH50)) ? yes : no;
TY_(CheckAttributes)(doc, node);