Bug 1611951 - Basic documentation of fields of ComputedGridTrackInfo r=emilio

Differential Revision: https://phabricator.services.mozilla.com/D61180

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Emily McDonough 2020-01-28 16:58:06 +00:00
parent 5bf3f1776c
commit faa250d528

View File

@ -64,7 +64,13 @@ struct ComputedGridTrackInfo {
nsTArray<nscoord> mPositions;
nsTArray<nscoord> mSizes;
nsTArray<uint32_t> mStates;
// Indicates if a track has been collapsed. This will be populated for each
// track in the repeat(auto-fit) and repeat(auto-fill), even if there are no
// collapsed tracks.
nsTArray<bool> mRemovedRepeatTracks;
// Contains lists of all line name lists, including the name lists inside
// repeats. When a repeat(auto) track exists, the internal track names will
// appear once each in this array.
nsTArray<nsTArray<StyleCustomIdent>> mResolvedLineNames;
uint32_t mRepeatFirstTrack;
bool mIsSubgrid;