fixed bugs 1203, 1067, 1169, 1125, 647

git-svn-id: svn://10.0.0.236/trunk@15281 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rickg%netscape.com
1998-11-25 02:19:22 +00:00
parent 026c88790f
commit 988e0eb906
2 changed files with 12 additions and 0 deletions

View File

@@ -1770,6 +1770,12 @@ PRBool CNavDTD::CanPropagate(eHTMLTags aParent,eHTMLTags aChild) const {
}
break;
case eHTMLTag_table:
if(aParent==aChild) {
break;
}
//else fall through...
default:
if(IsContainer(aChild) && HasOpenContainer(aChild))
result=IsGatedFromClosing(aChild);