Issue #333 - create exception for span/meta
This commit is contained in:
parent
17354ff927
commit
5f88452487
12
src/parser.c
12
src/parser.c
|
@ -2149,9 +2149,17 @@ void TY_(ParseInline)( TidyDocImpl* doc, Node *element, GetTokenMode mode )
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* block level tags end this element */
|
/*\
|
||||||
|
* block level tags end this element
|
||||||
|
* Issue #333 - There seems an exception if the element is a 'span',
|
||||||
|
* and the node just collected is a 'meta'. The 'meta' can not have
|
||||||
|
* CM_INLINE added, nor can the 'span' have CM_MIXED added without
|
||||||
|
* big consequences.
|
||||||
|
* There may be other exceptions to be added...
|
||||||
|
\*/
|
||||||
if (!(node->tag->model & CM_INLINE) &&
|
if (!(node->tag->model & CM_INLINE) &&
|
||||||
!(element->tag->model & CM_MIXED))
|
!(element->tag->model & CM_MIXED) &&
|
||||||
|
!(nodeIsSPAN(element) && nodeIsMETA(node)) )
|
||||||
{
|
{
|
||||||
if ( !TY_(nodeIsElement)(node) )
|
if ( !TY_(nodeIsElement)(node) )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue