Closed
Bug 75559
Opened 25 years ago
Closed 22 years ago
Style re-resolution due to content state changes needs to be optimized
Categories
(Core :: CSS Parsing and Computation, defect, P3)
Core
CSS Parsing and Computation
Tracking
()
RESOLVED
WONTFIX
Future
People
(Reporter: attinasi, Assigned: dbaron)
References
()
Details
(Keywords: perf, Whiteboard: [Hixie-P2] (major performance problem once we remove the hack workaround))
When some piece of content has a state change we currently resolve all style for
that element and all of its children. This is terribly inefficient, and causes
incredible performance problems when rules like '*:active' are present because
any state change ends up re applying ALL rules on potentially all elements (if
the BODY or root element is the one who's state is changing). A smarter approach
would be to simply re-apply the style rules that have dynamic pseudos in them,
as these are the only ones that can change when a content state change happens.
Even better would be to restrict it to rules that have a specific dynamic
pseudo, like the :active when a content state change for 'active' happens, or
:hover when a content state for hover happens.
The hack put in for bug 58821 can then be removed, allowing a wider application
of the dynamic pseudos without suffering from abysmal performance.
Comment 1•25 years ago
|
||
CC self, perf keyword and nominating for 0.9.1, 1.0, since we wouldn't want to
forget about this for too long :)
Comment 2•25 years ago
|
||
cc'ing hyatt since :active, :hover and :focus (and later :disabled, :enabled,
:checked, :selected, and what not) are things that I believe interest him. ;-)
Whiteboard: [Hixie-P3]
Updated•25 years ago
|
Whiteboard: [Hixie-P3] → [Hixie-P2] (major performance problem once we remove the hack workaround)
| Reporter | ||
Comment 3•25 years ago
|
||
Adding the URL from the old bug - Ian, please don't remove that page!
Also, setting milestone to Moz 1.0 for now - far too many 0.9.1 bugs on my lap
already, and this one does not crash or hang or corrupt data ;)
Status: NEW → ASSIGNED
Priority: -- → P2
Target Milestone: --- → mozilla1.0
| Reporter | ||
Comment 4•24 years ago
|
||
I wonder if this was fixed with the RuleTree landing...
Comment 5•24 years ago
|
||
Reassigning to Pierre
Assignee: attinasi → pierre
Status: ASSIGNED → NEW
Target Milestone: mozilla1.0 → mozilla1.0.1
Comment 6•24 years ago
|
||
Wouldn't this be a perfect 1.0 candidate?
Comment 7•24 years ago
|
||
Bulk moving Mozilla1.01 bugs to future-P1
Priority: P2 → P1
Target Milestone: mozilla1.0.1 → Future
Comment 8•24 years ago
|
||
*** Bug 132598 has been marked as a duplicate of this bug. ***
| Assignee | ||
Comment 9•24 years ago
|
||
| Assignee | ||
Comment 10•24 years ago
|
||
See also bug 137395, which is a bug that we should try to fix when we consider a
better way to optimize this.
Comment 11•24 years ago
|
||
cc'ing myself
| Assignee | ||
Comment 12•24 years ago
|
||
Assigning pierre's remaining Style System-related bugs to myself.
Assignee: pierre → dbaron
Priority: P1 → P3
Updated•23 years ago
|
Keywords: mozilla1.0 → mozilla1.4
Comment 13•22 years ago
|
||
So now that we have HasStateDependentStyle, is this still an issue?
| Assignee | ||
Comment 14•22 years ago
|
||
No.
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•