Make it easier to understand what PageXray buckets mean (#3743)
This commit is contained in:
parent
f940becfaf
commit
ac35e6c020
|
|
@ -1,6 +1,10 @@
|
|||
if pagexray.afterOnLoad.requests > 0
|
||||
a#requests-after-onload
|
||||
h3 Requests loaded after onLoad event
|
||||
p.small Included requests done after
|
||||
a(href='https://developer.mozilla.org/en-US/docs/Web/API/Window/load_event') load event end
|
||||
| .
|
||||
|
||||
table(data-sortable, id='contentSizeAfterOnload')
|
||||
+rowHeading(['Content', 'Transfer Size', 'Requests'])
|
||||
each data, type in pagexray.afterOnLoad.contentTypes
|
||||
|
|
@ -15,7 +19,9 @@ if pagexray.afterOnLoad.requests > 0
|
|||
|
||||
if pagexray.afterOnContentLoad.requests > 0
|
||||
h3 Requests loaded after onContentLoad
|
||||
p.small Includes requests done after onLoad.
|
||||
p.small Includes requests done after
|
||||
a(href='https://developer.mozilla.org/en-US/docs/Web/API/Document/DOMContentLoaded_event') DOM content loaded
|
||||
| .
|
||||
table(data-sortable, id='contentSizeAfterOnContentload')
|
||||
+rowHeading(['Content', 'Transfer Size', 'Requests'])
|
||||
each data, type in pagexray.afterOnContentLoad.contentTypes
|
||||
|
|
|
|||
Loading…
Reference in New Issue