mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
Fix typo which caused Bidi caret movement regression. Bug 212372, r+sr=roc+moz
This commit is contained in:
parent
18686da53d
commit
1825bb79f2
@ -784,8 +784,7 @@ NS_IMETHODIMP
|
||||
result = parent;
|
||||
break;
|
||||
}
|
||||
else if ((result = parent->GetParent()) != nsnull) {
|
||||
result = nsnull;
|
||||
else if (!(result = parent->GetParent())) {
|
||||
break;
|
||||
}
|
||||
else
|
||||
|
@ -784,8 +784,7 @@ NS_IMETHODIMP
|
||||
result = parent;
|
||||
break;
|
||||
}
|
||||
else if ((result = parent->GetParent()) != nsnull) {
|
||||
result = nsnull;
|
||||
else if (!(result = parent->GetParent())) {
|
||||
break;
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user