- From: Shih-Chiang Chien via GitHub <sysbot+gh@w3.org>
- Date: Wed, 20 Apr 2016 02:05:21 +0000
- To: public-secondscreen@w3.org
schien has just created a new issue for
https://github.com/w3c/presentation-api:
== PresentationReceiver.connectionList doesn't return the same object
all the time ==
In current WebIDL definition `connectionList` is marked with
`[SameObject]` extended attribute [1].
```
interface PresentationReceiver {
[SameObject]
readonly attribute Promise<PresentationConnectionList>
connectionList;
};
```
However in the algorithm it will create a new Promise object once the
previous one is settled, which conflict to the `[SameObject]`
contract.
s/unsettled Promise/Promise in step 1 should make the algorithm follow
the WebIDL definition.
[1]
https://w3c.github.io/presentation-api/#interface-presentationreceiver
Please view or discuss this issue at
https://github.com/w3c/presentation-api/issues/281 using your GitHub
account
Received on Wednesday, 20 April 2016 02:05:23 UTC