From 46a61180b1b9350117e58ddb89ea96fbf68e8ccf Mon Sep 17 00:00:00 2001 From: Philip Tellis Date: Sun, 9 Dec 2012 20:51:20 -0500 Subject: [PATCH] Mention async resources in DOMComplete MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DOMComplete only reports when all resources referenced by the DOM have been loaded.  There may still be asynchronous resources that have not loaded.  The onload event will block until these resources have been loaded. --- info.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/info.html b/info.html index 0610bbc..a415afa 100644 --- a/info.html +++ b/info.html @@ -54,7 +54,7 @@

performance.timing object

domContentLoadedEventEnd
Moment just after DOMContentLoaded event completes. This is when DOMready event in JS frameworks is fired.
domComplete
-
Returns the time when there's nothing more that can delay load event of the document i.e. all images are loaded.
+
Returns the time when all static resources referenced from the DOM have been downloaded. Async scripts and resources loaded using JavaScript may not have completed.
loadEventStart
It returns the time just before load event is fired or zero if load hasn't been fired yet.
loadEventEnd