Fix for head closing tag not reported (#327)

This commit is contained in:
Jim Derry 2015-11-29 13:21:49 +08:00
parent 3708d429bc
commit 61cfcb1555

View file

@ -3759,6 +3759,10 @@ void TY_(ParseHead)(TidyDocImpl* doc, Node *head, GetTokenMode ARG_UNUSED(mode))
TY_(ReportError)(doc, head, node, DISCARDING_UNEXPECTED); TY_(ReportError)(doc, head, node, DISCARDING_UNEXPECTED);
TY_(FreeNode)( doc, node); TY_(FreeNode)( doc, node);
} }
if (!head->closed)
TY_(ReportError)(doc, head, node, MISSING_ENDTAG_FOR);
#if !defined(NDEBUG) && defined(_MSC_VER) #if !defined(NDEBUG) && defined(_MSC_VER)
SPRTF("Exit ParseHead 1...\n"); SPRTF("Exit ParseHead 1...\n");
#endif #endif