Bug 1113121 followup - fix assertion r=me

This commit is contained in:
Benjamin Peterson 2015-01-12 23:48:15 -05:00
Родитель e597ad29ec
Коммит 8b8175fed3
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -7398,7 +7398,7 @@ nsHTMLEditRules::JoinNodesSmart(nsIContent& aNodeLeft, nsIContent& aNodeRight)
{
// Caller responsible for left and right node being the same type
nsCOMPtr<nsINode> parent = aNodeLeft.GetParentNode();
NS_ENSURE_STATE(parent);
NS_ENSURE_TRUE(parent, ::DOMPoint());
int32_t parOffset = parent->IndexOf(&aNodeLeft);
nsCOMPtr<nsINode> rightParent = aNodeRight.GetParentNode();