Re: [presentation-api-tests] Fix three Presentation API tests. (#4256)

I have a couple of comments below, about PresentationConnection_onconnected-manual.html and PresentationConnection_onterminated-manual.html:

* If I understand this correctly, it fixes the items 2. and 3. mentioned in https://github.com/w3c/web-platform-tests/issues/4040#issue-184229288. I believe that we can also fix 1. by adding `step_timeout()` like below:
```js
      var request = new PresentationRequest(presentationUrls);
      t.step_timeout({
        t.force_timeout();
        t.done();
      }, 5000);
      request.start()
        .then(function(connection) { // ...
```
* These files should be renamed to PresentationConnection_onconnect-manual.html and PresentationConnection_onterminate-manual.html.

View on GitHub: https://github.com/w3c/web-platform-tests/pull/4256#issuecomment-263489708

Received on Tuesday, 29 November 2016 06:42:27 UTC