RESOLVED FIXED 140615
[CSS Grid Layout] Size tracks using a list of all items sorted by span
https://bugs.webkit.org/show_bug.cgi?id=140615
Summary [CSS Grid Layout] Size tracks using a list of all items sorted by span
Sergio Villar Senin
Reported 2015-01-19 02:46:59 PST
The track sizing algorithm processes a list of items sorted by increasing span in order to size content sized columns. Our implementation instead processes content sized columns, meaning that an item spanning multiple content sized columns will be processed many times. Apart from that we're doing extra sorts and hast table lookups because we're reseting the list of items after processing each track.
Attachments
Patch (23.57 KB, patch)
2015-01-19 03:01 PST, Sergio Villar Senin
no flags
Patch (22.78 KB, patch)
2015-01-19 03:36 PST, Sergio Villar Senin
kling: review+
Sergio Villar Senin
Comment 1 2015-01-19 02:59:08 PST
(In reply to comment #0) > The track sizing algorithm processes a list of items sorted by increasing > span in order to size content sized columns. Our implementation instead > processes content sized columns, meaning that an item spanning multiple > content sized columns will be processed many times. > > Apart from that we're doing extra sorts and hast table lookups because we're > reseting the list of items after processing each track. Actually this was already implemented in bug 135701 but it has 2 important bugs: 1- the hash table is reset after processing each track, that means that is actually doing nothing (there are no duplicates inside the same track). 2- we're only sorting the items inside each track, we have to sort them all (all the items in the grid spanning through content sized columns).
Sergio Villar Senin
Comment 2 2015-01-19 03:01:51 PST
Sergio Villar Senin
Comment 3 2015-01-19 03:36:15 PST
Created attachment 244893 [details] Patch Removed a change in TestExpectations already included in master
Andreas Kling
Comment 4 2015-01-21 09:10:12 PST
Comment on attachment 244893 [details] Patch r=me
Sergio Villar Senin
Comment 5 2015-01-22 00:36:15 PST
Note You need to log in before you can comment on or make changes to this bug.