[w3ctag/design-reviews] Review request for Server-Timing (#188)

Hello TAG!

I'm requesting a TAG review of:

  - Name: Server-Timing
  - Specification URL: https://w3c.github.io/server-timing/
  - Explainer, Requirements Doc, or Example code: ```
['navigation', 'resource']
  .forEach(function(entryType) {
    performance.getEntriesByType(entryType).forEach(function({name: url, serverTiming}) {
      serverTiming.forEach(function({duration}) {
          console.info('Slow server-timing entry =',
            JSON.stringify({url, entryType, duration}, null, 2))
      })
    })
})
```
  - Primary contacts: cvazac, yoavweiss

Further details (optional):

  - Relevant time constraints or deadlines: [please provide]
  - [ ] I have read and filled out the [Self-Review Questionnare on Security and Privacy](https://www.w3.org/TR/security-privacy-questionnaire/). The [assessment is here](url).
  - [ ] I have reviewed the TAG's [API Design Principles](https://w3ctag.github.io/design-principles/)

You should also know that...

[please tell us anything you think is relevant to this review]

We'd prefer the TAG provide feedback as (please select one):

  - [ ] open issues in our Github repo for each point of feedback
  - [ ] open a single issue in our Github repo for the entire review
  - [ ] leave review feedback as a comment in this issue and @-notify [github usernames]


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3ctag/design-reviews/issues/188

Received on Monday, 14 August 2017 20:56:15 UTC