From 2cdedb4a630f3363308286643a03aecdc5949aad Mon Sep 17 00:00:00 2001 From: Jim Derry Date: Sat, 13 Feb 2016 11:53:53 +0800 Subject: [PATCH] Forgot one file... --- src/tidylib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tidylib.c b/src/tidylib.c index 0dbdf05..1e4c3f2 100755 --- a/src/tidylib.c +++ b/src/tidylib.c @@ -1552,7 +1552,7 @@ void TY_(CheckHTML5)( TidyDocImpl* doc, Node* node ) } else if (TY_(nodeIsElement)(node)) { if (node->tag) { - if ((!(node->tag->versions & VERS_HTML5))||(inRemovedInfo(node->tag->id))) { + if ( (!(node->tag->versions & VERS_HTML5) && !(node->tag->versions & VERS_PROPRIETARY)) || (inRemovedInfo(node->tag->id)) ) { if ( !already_strict ) TY_(ReportWarning)(doc, node, node, REMOVED_HTML5); }