зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1552644 - Ignore the result from filepicker if the input type is not file; r=smaug
Differential Revision: https://phabricator.services.mozilla.com/D33494 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
ee4ae8a0b1
Коммит
27a615f9f1
|
@ -2368,6 +2368,10 @@ HTMLInputElement::GetFilesOrDirectoriesInternal() const {
|
|||
void HTMLInputElement::SetFilesOrDirectories(
|
||||
const nsTArray<OwningFileOrDirectory>& aFilesOrDirectories,
|
||||
bool aSetValueChanged) {
|
||||
if (NS_WARN_IF(mType != NS_FORM_INPUT_FILE)) {
|
||||
return;
|
||||
}
|
||||
|
||||
MOZ_ASSERT(mFileData);
|
||||
|
||||
mFileData->ClearGetFilesHelpers();
|
||||
|
|
Загрузка…
Ссылка в новой задаче