diff --git a/CHANGELOG b/CHANGELOG index 1970b66be..80623b663 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,7 +2,7 @@ CHANGELOG sitespeed.io version 2.4-wip ------------------------ -* If Chrome is used, display firstPaintTime in the summary as default #307 +* If Chrome or IE is used, display firstPaintTime in the summary as default #307 * Added more default fields in the summary: requestsMissingGzip, jsWeightPerPage, cssWeightPerPage #325 * Changed order of the summary fields so that logical fields are grouped together * Made it clearer that CSS & JS weight are per file in the summary (meaning inline CSS/JS are not included) diff --git a/bin/sitespeed.io b/bin/sitespeed.io index 507653a8c..6521d9465 100755 --- a/bin/sitespeed.io +++ b/bin/sitespeed.io @@ -288,8 +288,8 @@ if [ "$SUMMARY_BOXES" != "" ] if $COLLECT_BROWSER_TIMINGS then SUMMARY_BOXES="$SUMMARY_BOXES",serverResponseTime,backEndTime,pageDownloadTime,frontEndTime,domContentLoadedTime,pageLoadTime - ## Extra: If we use chrome, always add the firstpaint - if [[ "$BROWSER_TIME_PARAMS " == *chrome* ]] + ## Extra: If we use chrome or IE , always add the firstpaint + if [[ "$BROWSER_TIME_PARAMS " == *chrome* ]] || [[ "$BROWSER_TIME_PARAMS " == *ie* ]] then SUMMARY_BOXES="$SUMMARY_BOXES",firstPaintTime fi