CSS indentation was not dropping non-editable nodes; b=203723, r=kaie, sr=peterv

This commit is contained in:
glazman%netscape.com 2003-06-12 07:43:07 +00:00
Родитель 19e72716ed
Коммит 0eaa768b33
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -3547,6 +3547,10 @@ nsHTMLEditRules::WillCSSIndent(nsISelection *aSelection, PRBool *aCancel, PRBool
{
// here's where we actually figure out what to do
nsCOMPtr<nsIDOMNode> curNode = arrayOfNodes[i];
// Ignore all non-editable nodes. Leave them be.
if (!mHTMLEditor->IsEditable(curNode)) continue;
PRInt32 offset;
res = nsEditor::GetNodeLocation(curNode, address_of(curParent), &offset);
if (NS_FAILED(res)) return res;