Skip to content

Commit

Permalink
Show render blocking status. (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore authored Sep 29, 2022
1 parent b2caa2a commit 965d8cd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,23 @@ <h3 id="visualProgressHeader">Visual Progress</h3>
<td> {{p1.contentTypes.image.requests}} ({{js "formatBytes(this.p1.contentTypes.image.transferSize)"}})</td>
<td> {{p2.contentTypes.image.requests}} ({{js "formatBytes(this.p2.contentTypes.image.transferSize)"}})</td>
</tr>
{{#if p1.renderBlocking}}  {{#if p2.renderBlocking}} 
<tr>
<td class="tabletext">Render blocking</td>
<td> {{p1.renderBlocking.blocking}} </td>
<td> {{p2.renderBlocking.blocking}} </td>
</tr>
<tr>
<td class="tabletext">Potentially blocking</td>
<td> {{p1.renderBlocking.potentiallyBlocking}} </td>
<td> {{p2.renderBlocking.potentiallyBlocking}} </td>
</tr>
<tr>
<td class="tabletext">In body parser blocking</td>
<td> {{p1.renderBlocking.in_body_parser_blocking }} </td>
<td> {{p2.renderBlocking.in_body_parser_blocking }} </td>
</tr>
{{/if}} {{/if}}
{{#if p1.visualMetrics}} 
{{#if p1.visualMetrics.FirstVisualChange}} {{#if p2.visualMetrics.FirstVisualChange}}
<tr>
Expand Down

0 comments on commit 965d8cd

Please sign in to comment.