Merge pull request #10 from stevenle/master

Empty <progress> tags no longer stripped. Fixes #10.
This commit is contained in:
Michael[tm] Smith 2012-02-28 08:18:25 -08:00
commit f4edfc693b
2 changed files with 4 additions and 1 deletions

View file

@ -287,7 +287,9 @@ static Bool CanPrune( TidyDocImpl* doc, Node *element )
/* fix for ISSUE #7 https://github.com/w3c/tidy-html5/issues/7 */
if (nodeIsCANVAS(element))
return no;
if (nodeIsPROGRESS(element))
return no;
if ( attrGetID(element) || attrGetNAME(element) )
return no;

View file

@ -231,5 +231,6 @@ uint TY_(nodeHeaderLevel)( Node* node ); /* 1, 2, ..., 6 */
#define nodeIsMENU( node ) TagIsId( node, TidyTag_MENU )
#define nodeIsBUTTON( node ) TagIsId( node, TidyTag_BUTTON )
#define nodeIsCANVAS( node ) TagIsId( node, TidyTag_CANVAS )
#define nodeIsPROGRESS( node ) TagIsId( node, TidyTag_PROGRESS )
#endif /* __TAGS_H__ */