WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
62069
Move file-choosing and icon-loading management to FileInputType
https://bugs.webkit.org/show_bug.cgi?id=62069
Summary
Move file-choosing and icon-loading management to FileInputType
Dimitri Glazkov (Google)
Reported
2011-06-03 16:48:43 PDT
Make FileInputType a FileChooserClient.
Attachments
WIP: First stab.
(26.20 KB, patch)
2011-06-03 16:49 PDT
,
Dimitri Glazkov (Google)
no flags
Details
Formatted Diff
Diff
Patch
(28.10 KB, patch)
2011-06-06 14:50 PDT
,
Dimitri Glazkov (Google)
no flags
Details
Formatted Diff
Diff
Patch
(23.17 KB, patch)
2011-06-22 22:45 PDT
,
Dimitri Glazkov (Google)
tkent
: review+
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Dimitri Glazkov (Google)
Comment 1
2011-06-03 16:49:46 PDT
Created
attachment 95988
[details]
WIP: First stab.
Dimitri Glazkov (Google)
Comment 2
2011-06-03 16:51:29 PDT
RenderObject seems like a bad candidate to be a FileChooserClient -- its lifetime is just too volatile. What if we just made FileInputType the FileChooserClient?
WebKit Review Bot
Comment 3
2011-06-03 16:56:04 PDT
Comment on
attachment 95988
[details]
WIP: First stab.
Attachment 95988
[details]
did not pass chromium-ews (chromium-xvfb): Output:
http://queues.webkit.org/results/8766120
WebKit Review Bot
Comment 4
2011-06-03 17:52:09 PDT
Comment on
attachment 95988
[details]
WIP: First stab.
Attachment 95988
[details]
did not pass cr-mac-ews (chromium): Output:
http://queues.webkit.org/results/8763272
Kent Tamura
Comment 5
2011-06-06 03:48:38 PDT
Comment on
attachment 95988
[details]
WIP: First stab. View in context:
https://bugs.webkit.org/attachment.cgi?id=95988&action=review
> Source/WebCore/html/FileInputType.cpp:48 > +// FIXME: Doesn't look like I need this code?!
The purpose of this is to pass already-selected files to a FileChooser. The FileChooser can open a directory in which the selected files is, or provide a UI to remove a part of the selected files.
Dimitri Glazkov (Google)
Comment 6
2011-06-06 10:42:24 PDT
Comment on
attachment 95988
[details]
WIP: First stab. View in context:
https://bugs.webkit.org/attachment.cgi?id=95988&action=review
>> Source/WebCore/html/FileInputType.cpp:48 >> +// FIXME: Doesn't look like I need this code?! > > The purpose of this is to pass already-selected files to a FileChooser. > The FileChooser can open a directory in which the selected files is, or provide a UI to remove a part of the selected files.
But if the lifetime of FileChooser is now tied to FileInputType. How can there be already-selected files in a newly-constructed FileInputType?
Dimitri Glazkov (Google)
Comment 7
2011-06-06 14:50:20 PDT
Created
attachment 96128
[details]
Patch
Kent Tamura
Comment 8
2011-06-06 16:33:46 PDT
Comment on
attachment 95988
[details]
WIP: First stab. View in context:
https://bugs.webkit.org/attachment.cgi?id=95988&action=review
>>> Source/WebCore/html/FileInputType.cpp:48 >>> +// FIXME: Doesn't look like I need this code?! >> >> The purpose of this is to pass already-selected files to a FileChooser. >> The FileChooser can open a directory in which the selected files is, or provide a UI to remove a part of the selected files. > > But if the lifetime of FileChooser is now tied to FileInputType. How can there be already-selected files in a newly-constructed FileInputType?
Yes. IMO, we should * Follow the assumption that a FileChooser instance is created when we need to open a file chooser dialog, not in FileInputType constructor, or * Remove FileChooser::m_filenames. It's redundant because we have FileInputType::m_fileList.
Kent Tamura
Comment 9
2011-06-06 16:37:51 PDT
Comment on
attachment 96128
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=96128&action=review
> Source/WebCore/html/FileInputType.cpp:309 > + element()->dispatchFormControlChangeEvent(); > + > + repaint();
dispatchFormControlChangeEvent() dispatches a synchronous event, a JavaScript code might run in an event handler, and it might change the type of the <input>. So this FileInputType might be deleted after dispatchFromControlChangeEvent(). We should not call repaint().
Dimitri Glazkov (Google)
Comment 10
2011-06-07 09:50:27 PDT
(In reply to
comment #9
)
> (From update of
attachment 96128
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=96128&action=review
> > > Source/WebCore/html/FileInputType.cpp:309 > > + element()->dispatchFormControlChangeEvent(); > > + > > + repaint(); > > dispatchFormControlChangeEvent() dispatches a synchronous event, a JavaScript code might run in an event handler, and it might change the type of the <input>. > So this FileInputType might be deleted after dispatchFromControlChangeEvent(). We should not call repaint().
Oooh. good point. Let me think on this a bit.
Dimitri Glazkov (Google)
Comment 11
2011-06-07 10:57:55 PDT
Comment on
attachment 96128
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=96128&action=review
>>> Source/WebCore/html/FileInputType.cpp:309
>> >> dispatchFormControlChangeEvent() dispatches a synchronous event, a JavaScript code might run in an event handler, and it might change the type of the <input>. >> So this FileInputType might be deleted after dispatchFromControlChangeEvent(). We should not call repaint(). > > Oooh. good point. Let me think on this a bit.
This one is easy. I can just move dispatchFormControlChangeEvent to the end of this function. However, we should probably consider switching change event to become a scoped event, to avoid this in the future.
Dimitri Glazkov (Google)
Comment 12
2011-06-07 11:49:04 PDT
(In reply to
comment #8
)
> (From update of
attachment 95988
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=95988&action=review
> > >>> Source/WebCore/html/FileInputType.cpp:48 > >>> +// FIXME: Doesn't look like I need this code?! > >> > >> The purpose of this is to pass already-selected files to a FileChooser. > >> The FileChooser can open a directory in which the selected files is, or provide a UI to remove a part of the selected files. > > > > But if the lifetime of FileChooser is now tied to FileInputType. How can there be already-selected files in a newly-constructed FileInputType? > > Yes. IMO, we should > * Follow the assumption that a FileChooser instance is created when we need to open a file chooser dialog, not in FileInputType constructor, or
I tried this first. You can't really do this elegantly, since fileChooser() is queried by RenderFileUploadControl (to draw icon and text), so it has to exist longer than that. Perhaps once we switch to purely CSS rendering, we could take this step, but at the moment it's not really possible.
> * Remove FileChooser::m_filenames. It's redundant because we have FileInputType::m_fileList.
I tried this next. Once again, the entanglement with rendering spoils everything. In this case, loadIcon and basenameForWidth need to know about the list of files, and adding filenames as parameter seems inelegant.
Dimitri Glazkov (Google)
Comment 13
2011-06-07 15:52:18 PDT
Perhaps what I need to do first is decouple concerns of rendering from FileChooser. It's wrong for it to be providing rendering feedback.
Dimitri Glazkov (Google)
Comment 14
2011-06-22 22:45:09 PDT
Created
attachment 98314
[details]
Patch
Kent Tamura
Comment 15
2011-06-22 22:59:00 PDT
Comment on
attachment 98314
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=98314&action=review
> Source/WebCore/html/HTMLInputElement.cpp:1273 > + ASSERT(m_inputType->isFileUpload()); > + m_inputType->receiveDroppedFiles(filenames);
InputType::receiveDroppedFiles() has ASSERT_NOT_REACHED(). So the assertion here is redundant.
> Source/WebCore/html/HTMLInputElement.cpp:1279 > + ASSERT(m_inputType->isFileUpload()); > + return m_inputType->icon();
ditto.
Dimitri Glazkov (Google)
Comment 16
2011-06-22 23:04:14 PDT
Thanks for review! Will fix nits upon landing.
Dimitri Glazkov (Google)
Comment 17
2011-06-22 23:04:59 PDT
Committed
r89535
: <
http://trac.webkit.org/changeset/89535
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug