Open
Bug 1252186
Opened 9 years ago
Updated 2 years ago
[css-grid] Finding the grid area for grid child fragments is O(n²)
Categories
(Core :: Layout: Grid, defect, P4)
Core
Layout: Grid
Tracking
()
NEW
People
(Reporter: MatsPalmgren_bugz, Unassigned)
References
Details
(Keywords: perf)
Spawned off from bug 1144096 comment 28
n = number of child frames (both grid items and grid-aligned abs.pos. descendants)
dholbert suggested a hash map from frame pointers to mGridItemInfo array indices
to make it O(n).
Another way would be to replicate the GridArea on each fragment (frame property),
but then we'd need to update these copies when the area changes.
Reporter | ||
Comment 1•8 years ago
|
||
Note also bug 1306705 which is similar.
Updated•2 years ago
|
Severity: minor → S4
Updated•2 years ago
|
Component: Layout → Layout: Grid
You need to log in
before you can comment on or make changes to this bug.
Description
•