Open
Bug 1943291
Opened 24 days ago
Updated 24 days ago
Setting up the datetimebox is rather slow.
Categories
(Core :: DOM: Forms, defect)
Core
DOM: Forms
Tracking
()
NEW
People
(Reporter: emilio, Unassigned)
References
(Blocks 1 open bug)
Details
https://share.firefox.dev/4jtK2er, from one of the test-cases in the blocked bug.
It seems:
- We generate a lot of garbage, causing tons of cc/gc activity.
- In
generateContent
, we callparseFromString
for every input. Ideally we should be able to share it. JustgenerateContent
is ~25% of the time spent, and that's without accounting for garbage and such that needs to be cleaned up. - There seems to be a lot of other low-hanging fruit but just fixing generateContent would go a long way.
Updated•24 days ago
|
Severity: -- → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•