Created
April 22, 2011 15:07
-
-
Save adamsanderson/936841 to your computer and use it in GitHub Desktop.
Webkit Page Load Performance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// One liner to report the perceived performance of a page: | |
TM = window.performance.timing; console.log(window.location.toString(), TM.domInteractive - TM.unloadEventStart, TM.domComplete - TM.unloadEventStart); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment