Add DOM-related performance timing properties

This commit is contained in:
Greg Guthe 2015-08-14 20:47:26 -04:00
parent 27e104aa1a
commit e49d592fba
4 changed files with 91 additions and 7 deletions

View file

@ -21,12 +21,12 @@ interface PerformanceTiming {
readonly attribute unsigned long long secureConnectionStart;
readonly attribute unsigned long long requestStart;
readonly attribute unsigned long long responseStart;
readonly attribute unsigned long long responseEnd;
readonly attribute unsigned long long responseEnd; */
readonly attribute unsigned long long domLoading;
readonly attribute unsigned long long domInteractive;
readonly attribute unsigned long long domContentLoadedEventStart;
readonly attribute unsigned long long domContentLoadedEventEnd;
readonly attribute unsigned long long domComplete;
readonly attribute unsigned long long loadEventStart;
/* readonly attribute unsigned long long loadEventStart;
readonly attribute unsigned long long loadEventEnd; */
};