https://issues.apache.org/bugzilla/show_bug.cgi?id=53005
--- Comment #6 from Glenn Adams <[email protected]> 2012-04-02 21:57:14 UTC --- (In reply to comment #5) > 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)) { see Inline.java:120 -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
