- From: L. David Baron <notifications@github.com>
- Date: Mon, 18 Sep 2017 20:03:20 -0700
- To: w3ctag/design-reviews <design-reviews@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 19 September 2017 03:03:42 UTC
One initial reaction is that it might be better for the example to use
```js
frame.allowedGestureDelegation.add('media');
```
rather than
```js
frame.allowedGestureDelegation = 'media';
```
since using `DOMTokenList.add` is likely to make sense in more complex cases where the script author doesn't want to stomp on things set by other scripts.
Another initial reaction is that I'm a little worried about how well standardized the related behaviors are. Are there documents that describe Chrome's mitigation behavior well enough for other browsers to implement it compatibly?
I also wonder whether a name less of a mouthful than `allowedGestureDelegation` could be found...
--
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/199#issuecomment-330414858
Received on Tuesday, 19 September 2017 03:03:42 UTC