diff --git a/index.html b/index.html index 12ff4ec..5b56d67 100644 --- a/index.html +++ b/index.html @@ -420,60 +420,6 @@

{{RenderBlockingStatusType}} render-blocking status.

-

- The PerformanceResourceTiming interface participates in the - Performance - Timeline and extends the following attributes of the - PerformanceEntry - interface: -

-
-
- name -
-
- The name getter steps are to return this's - requested URL. -
-
- entryType -
-
- The entryType getter steps are to return the DOMString - "resource". -
-
- startTime -
-
-

- The startTime getter steps are to convert fetch - timestamp for this's timing info's [=fetch timing - info/start time=] and this's relevant global - object. -

-

- `startTime` is measured right at the start of the [=fetch=], - before any redirects. See fetching. -

-
-
- duration -
-
-

- The duration getter steps are to return this's - timing info's [=fetch - timing info/end time=] minus this's timing info's [=fetch timing - info/start time=]. -

-
-

When toJSON is called, run [[WEBIDL]]'s default toJSON operation. @@ -899,15 +845,12 @@

- To add a PerformanceResourceTiming entry into the + To add a PerformanceResourceTiming entry new entry into the performance entry buffer, run the following steps:

    -
  1. Let new entry be the input PerformanceEntry to be - added. -
  2. If can add resource timing entry returns true and resource timing buffer full event pending flag is false, run the following substeps: @@ -1185,6 +1128,7 @@

  3. Create a PerformanceResourceTiming object |entry| in |global|'s [=global object/realm=].
  4. +
  5. Setup the resource timing entry for |entry|, given |initiatorType|, |requestedURL|, |timingInfo|, |cacheMode|, @@ -1214,6 +1158,15 @@

  6. Assert that |cacheMode| is the empty string, "local", or "validated".
  7. + +
  8. Let |global| be |entry|'s [=relevant global object=].
  9. + +
  10. [=initialize a PerformanceEntry|Initialize=] |entry| given + the result of converting |timingInfo|'s + [=fetch timing info/start time=] given |global|, "resource", + |requestedURL|, and the result of converting + |timingInfo|'s [=fetch timing info/end time=] given |global|. +
  11. Set |entry|'s initiator type to |initiatorType|.