mirror of
https://github.com/servo/servo.git
synced 2025-08-12 17:05:33 +01:00
Added fetch_start functionality in http_fetch
Added spec link for webidl. Added fetch_start functionality to PRT . Changed the fetch_start location
This commit is contained in:
parent
3ca82471c8
commit
77c9285780
6 changed files with 27 additions and 20 deletions
|
@ -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;
|
||||
// };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue