diff options
author | Adit Jain <aditjain1980@gmail.com> | 2019-01-17 12:02:18 +0530 |
---|---|---|
committer | aditj <aditjain1980@gmail.com> | 2019-01-24 23:18:54 +0530 |
commit | 77c928578094d7c9ed2f0c584f9f63e318c7c8c4 (patch) | |
tree | 77a29a6bfe38a06db0101a4a7522f5231b33c6b6 /components/script/dom/webidls/PerformanceResourceTiming.webidl | |
parent | 3ca82471c84c805afd46321bf3cb61a97960ff69 (diff) | |
download | servo-77c928578094d7c9ed2f0c584f9f63e318c7c8c4.tar.gz servo-77c928578094d7c9ed2f0c584f9f63e318c7c8c4.zip |
Added fetch_start functionality in http_fetch
Added spec link for webidl.
Added fetch_start functionality to PRT .
Changed the fetch_start location
Diffstat (limited to 'components/script/dom/webidls/PerformanceResourceTiming.webidl')
-rw-r--r-- | components/script/dom/webidls/PerformanceResourceTiming.webidl | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/components/script/dom/webidls/PerformanceResourceTiming.webidl b/components/script/dom/webidls/PerformanceResourceTiming.webidl index ae5d541af0b..b63f341b1c9 100644 --- a/components/script/dom/webidls/PerformanceResourceTiming.webidl +++ b/components/script/dom/webidls/PerformanceResourceTiming.webidl @@ -6,6 +6,7 @@ * https://w3c.github.io/resource-timing/ */ +// https://w3c.github.io/resource-timing/#sec-performanceresourcetiming [Exposed=(Window,Worker)] interface PerformanceResourceTiming : PerformanceEntry { readonly attribute DOMString initiatorType; @@ -13,7 +14,7 @@ interface PerformanceResourceTiming : PerformanceEntry { // readonly attribute DOMHighResTimeStamp workerStart; // readonly attribute DOMHighResTimeStamp redirectStart; // readonly attribute DOMHighResTimeStamp redirectEnd; - // readonly attribute DOMHighResTimeStamp fetchStart; + readonly attribute DOMHighResTimeStamp fetchStart; // readonly attribute DOMHighResTimeStamp domainLookupStart; // readonly attribute DOMHighResTimeStamp domainLookupEnd; // readonly attribute DOMHighResTimeStamp connectStart; @@ -27,9 +28,3 @@ interface PerformanceResourceTiming : PerformanceEntry { /// readonly attribute unsigned long long decodedBodySize; // [Default] object toJSON(); }; - -// partial interface Performance { -// void clearResourceTimings(); -// void setResourceTimingBufferSize(unsigned long maxSize); -// attribute EventHandler onresourcetimingbufferfull; -// }; |