Open
Bug 65248
Opened 24 years ago
Updated 2 years ago
Display needs to be synchronized before certain events are processed
Categories
(Core :: DOM: UI Events & Focus Handling, defect)
Core
DOM: UI Events & Focus Handling
Tracking
()
NEW
Future
People
(Reporter: kmcclusk, Unassigned)
Details
Description taken from Robert O'Callahan's and Kevin McCluskey's comments in bug
36849
The problem here is that updating has two phases -- reflowing and repainting
-- if we ever repaint while there are pending reflows, we display something
that is not a valid rendering of any state of the content.
In addition, DOM changes can result in a combination of simple visual changes
and reflow changes. The simple visual changes result in changes in frame state
that if there is repaint will potentially result in the visual changes being
displayed independently of the reflow changes.
One solution would be to have the target of an event decide if the display needs
to synchronized before the target can perform it's processing. For example, if
the target of a keyevent is a textfield then it wouldn't want the display to be
synchronized. It needs to batch the keyevent's without updating the display. If
the target of a keyevent is a javaScript event handler that manipulates the DOM
to generate a single frame of animation driven by the keyboard then it would
need the display to be synchronized to avoid flicker.
Another solution would be to force the processing of the relevant pending
reflows every time we repaint.
Updated•24 years ago
|
Keywords: mozilla1.0
Reporter | ||
Updated•24 years ago
|
Status: NEW → ASSIGNED
Comment 1•24 years ago
|
||
Reassigning QA Contact for all open and unverified bugs previously under Lorca's
care to Gerardo as per phone conversation this morning.
QA Contact: lorca → gerardok
Reporter | ||
Updated•24 years ago
|
Target Milestone: --- → Future
Reporter | ||
Comment 2•24 years ago
|
||
Setting milestone to future
Updated•23 years ago
|
QA Contact: madhur → rakeshmishra
Updated•22 years ago
|
QA Contact: rakeshmishra → trix
Updated•15 years ago
|
Assignee: kmcclusk → nobody
Status: ASSIGNED → NEW
QA Contact: trix → events
Assignee | ||
Updated•6 years ago
|
Component: Event Handling → User events and focus handling
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•