зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1655784 - Return correct collapsed selection range on inputs. r=morgan
Differential Revision: https://phabricator.services.mozilla.com/D88502
This commit is contained in:
Родитель
d5cbb2ceb8
Коммит
0a7569bfd1
|
@ -194,7 +194,7 @@ inline NSString* ToNSString(id aValue) {
|
|||
textAcc->SelectionBoundsAt(0, &start, &end);
|
||||
} else {
|
||||
start = textAcc->CaretOffset();
|
||||
start = start != -1 ? start : 0;
|
||||
end = start != -1 ? start : 0;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
@ -204,7 +204,7 @@ inline NSString* ToNSString(id aValue) {
|
|||
proxy->SelectionBoundsAt(0, data, &start, &end);
|
||||
} else {
|
||||
start = proxy->CaretOffset();
|
||||
start = start != -1 ? start : 0;
|
||||
end = start != -1 ? start : 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче