https://issues.apache.org/bugzilla/show_bug.cgi?id=53005
Glenn Adams <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|indexterm inside a footnote |wrapper is not a block item |from docbook | --- Comment #5 from Glenn Adams <[email protected]> 2012-04-02 21:56:38 UTC --- this bug is due to isBlockItem() returning true for wrapper } else if (!canHaveBlockLevelChildren && isBlockItem(nsURI, localName)) { invalidChildError(loc, getParent().getName(), nsURI, getName(), "rule.inlineContent"); } else { in particular isBlockItem() returns true for block *or* neutral, so this condition needs to be further qualified as: } else if (!canHaveBlockLevelChildren && isBlockItem(nsURI, localName) && !isNeutralItem(nsURI, localName)) { -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
