Skip to content

Instantly share code, notes, and snippets.

@cthiel
Created March 4, 2015 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cthiel/516918e9de2a4eaa1520 to your computer and use it in GitHub Desktop.
Save cthiel/516918e9de2a4eaa1520 to your computer and use it in GitHub Desktop.
diff --git a/src/qt/qtwebkit/Source/WebCore/html/FileInputType.cpp b/src/qt/qtwebkit/Source/WebCore/html/FileInputType.cpp
index 7362f63..1a7b148 100644
--- a/src/qt/qtwebkit/Source/WebCore/html/FileInputType.cpp
+++ b/src/qt/qtwebkit/Source/WebCore/html/FileInputType.cpp
@@ -187,8 +187,9 @@ void FileInputType::handleDOMActivateEvent(Event* event)
if (element()->isDisabledFormControl())
return;
- if (!ScriptController::processingUserGesture())
- return;
+ // PATCH related to #12506 - commented out to allow programmatic form file uploads
+ //if (!ScriptController::processingUserGesture())
+ // return;
if (Chrome* chrome = this->chrome()) {
FileChooserSettings settings;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment