- From: Mounir Lamouri <notifications@github.com>
- Date: Tue, 17 Mar 2015 04:28:35 -0700
- To: w3c/permissions <permissions@noreply.github.com>
Received on Tuesday, 17 March 2015 11:29:37 UTC
For example, if there is the following permission associated with the name _quota_:
```js
enum QuotaType {
"persistent",
"temporary"
};
dictionary QuotaPermission : Permission {
required unsigned long long quota;
QuotaType type = "persistent";
};
```
What should happen if this call is made:
```js
Permissions.query({'name': 'quota'});
```
I believe it should fail the same way as if the name was unknown but WebIDL doesn't provide us with that failure for free.
---
Reply to this email directly or view it on GitHub:
https://github.com/w3c/permissions/issues/14
Received on Tuesday, 17 March 2015 11:29:37 UTC