WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
89962
Change the timing of form state restore
https://bugs.webkit.org/show_bug.cgi?id=89962
Summary
Change the timing of form state restore
Kent Tamura
Reported
2012-06-26 02:31:58 PDT
See
https://bugs.webkit.org/show_bug.cgi?id=23346#c45
. At this moment, we restore form control state when we have finished parsing HTML source of the control. I'd like to change it so that restoring just after 'load' event of the document.
Attachments
Patch
(11.09 KB, patch)
2012-07-13 01:03 PDT
,
Kent Tamura
no flags
Details
Formatted Diff
Diff
Patch for landing
(11.07 KB, patch)
2012-07-13 02:57 PDT
,
Kent Tamura
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Jon Lee
Comment 1
2012-06-26 23:29:34 PDT
Do we have an idea of how other browsers behave?
Radar WebKit Bug Importer
Comment 2
2012-06-26 23:30:13 PDT
<
rdar://problem/11757271
>
Brady Eidson
Comment 3
2012-06-27 08:42:28 PDT
(In reply to
comment #0
)
> I'd like to change it so that restoring just after 'load' event of the document.
What do relevant specs say? What do all other browsers do? I understand it would be quite convenient to make this change, but convenience doesn't always get to drive our decisions!
Kent Tamura
Comment 4
2012-06-27 17:58:41 PDT
I don't think there are relevant spec. Behavior of other browsers: Firefox: A value was restored before 'load' event of the document, and the restoring dispatched 'input' event for the control. (I tested with an <input>) IE: A value was restored before 'load' event of the document, and the restoring didn't dispatch 'input' or 'change' event. Opera: It seems Opera doesn't restore form values. Hmm, so restoring after 'load' might be risky. Let me reconsider.
Kent Tamura
Comment 5
2012-07-12 22:59:52 PDT
I'd like to change the timing so that: - Restoring in finishParsingChildren of owner form for form controls with an owner - Restoring in finishParsingChildren of form control itself for form control without any owner (no change) Because - Restoring after 'load' event is not compatibile with other browsers - 'load' event may be too late. It can be dispatched several seconds later after starting the document loading - In order to fix a case of
http://code.google.com/p/chromium/issues/detail?id=34351#c10
, we need to take a look at the <form> content.
Kent Tamura
Comment 6
2012-07-13 01:03:50 PDT
Created
attachment 152178
[details]
Patch
Hajime Morrita
Comment 7
2012-07-13 02:30:50 PDT
Comment on
attachment 152178
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=152178&action=review
I hope that the restoring policy be clarified or documented somehow. For example, Can we add kind of "dirty bit" for each state to prevent accidental duplication?
> Source/WebCore/ChangeLog:8 > + For a preparation to fix a form identification problem, restore controls
Could you point the bug id here?
> Source/WebCore/ChangeLog:35 > + Add isFormControlElementWithState() for FormController::restoreControlStateIn().
Nit: Added
> Source/WebCore/ChangeLog:38 > + Some code is moved to FormController:restoreControlStateFor().
Nit: s/is/was/
> Source/WebCore/html/FormController.cpp:34 > + // Assume contorl with form attribute have no owners because we restores
s/contorl/controls/ s/restores/restore/
Kent Tamura
Comment 8
2012-07-13 02:52:34 PDT
Comment on
attachment 152178
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=152178&action=review
>> Source/WebCore/ChangeLog:8 >> + For a preparation to fix a form identification problem, restore controls > > Could you point the bug id here?
Sure. I have fined
Bug 91209
, and will add it to ChangeLog.
Kent Tamura
Comment 9
2012-07-13 02:54:20 PDT
(In reply to
comment #7
)
> I hope that the restoring policy be clarified or documented somehow.
I'll make a wiki page later.
Kent Tamura
Comment 10
2012-07-13 02:57:46 PDT
Created
attachment 152199
[details]
Patch for landing
WebKit Review Bot
Comment 11
2012-07-13 04:00:18 PDT
Comment on
attachment 152199
[details]
Patch for landing Clearing flags on attachment: 152199 Committed
r122559
: <
http://trac.webkit.org/changeset/122559
>
WebKit Review Bot
Comment 12
2012-07-13 04:00:24 PDT
All reviewed patches have been landed. Closing bug.
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