Test freshness page should expose revision information for latest build on tooltip.
Created attachment 373440 [details] Patch
Created attachment 373442 [details] Patch
Comment on attachment 373442 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=373442&action=review > Websites/perf.webkit.org/public/v3/pages/test-freshness-page.js:94 > + let commitSet = null; commitSetOfLastPoint? > Websites/perf.webkit.org/public/v3/pages/test-freshness-page.js:178 > + for (const repository of Repository.sortByNamePreferringOnesWithURL(commitSet.repositories())) { > + const commit = commitSet.commitForRepository(repository); > + tableContent.push(element('tr', [ Better written as: tableContent.push(Repository.sortByNamePreferringOnesWithURL(commitSet.repositories()).map((repository) => { ~ }); Note: CommonComponentBase._addContentToElement would unwrap nested arrays.
Landed in r247168.