Closed
Bug 149216
Opened 23 years ago
Closed 21 years ago
[DHTML] Style resolution optimization
Categories
(Core :: DOM: CSS Object Model, defect)
Core
DOM: CSS Object Model
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: markushuebner, Unassigned)
References
Details
(Keywords: perf)
--- from bug 64516 #21 ---
Script is modifying the style attribute via the DOM, which is causing a lot of
extra work since we have to reresolve style on the element, not knowing what
actually changed in the style attribute.
Buster had an idea that maybe we can be smarter about handling changes to the
style attribute, like looking at what has changed and restricting the impact
when possible. For example, if it is just the position of an element chaning we
cna optimize to move the element, and avoid the need to reresolve style and do
the style-change reflow...
Reporter | ||
Comment 1•23 years ago
|
||
Reassigning ...
This isn't as simple as you think.
We definitely do need to have the correct data in the style context, but we
might be able to do that with more selective clearing of data (only certain
structs). This would require that we (at compile time, using macros) build a
map of which structs influence which other structs.
Furthermore, there are cases where moving positioned element offsets does more
than just move things -- consider absolutely positioned elements with a 'right'
and a 'left', or consider absolutely positioned elements inside something with
'overflow: auto' (like the BODY) whose movement would require the extent of the
scrollbars to change.
Reporter | ||
Comment 4•22 years ago
|
||
When bug 157681 is fixed this might become easier.
Anyone willing to take this?
Assignee: jst → other
Updated•22 years ago
|
Priority: -- → P3
Target Milestone: --- → Future
Reporter | ||
Comment 5•22 years ago
|
||
Is part of this covered by the layout architecture rewrite plans?
Reporter | ||
Updated•22 years ago
|
![]() |
||
Comment 6•22 years ago
|
||
This is probably best done by keeping the style reresolution, since the children
could be using "inherit" and thus need to get their style reresolved anyway.
The direction to go would, imo, be to have finer-grained reflow-like hints
(resize, reposition, reflow, maybe?)
Reporter | ||
Comment 7•21 years ago
|
||
Due to the arch changes in the last month has there been any changes in view
of this approach?
I think trying to do things like this would cause lots of bugs (like we had
before we moved to immutability) and I'm not convinced that the performance of
style resolution itself is a frequent performance problem.
->wontfix
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•