Re: [w3ctag/design-reviews] Request Review: Gesture Delegation (#199)

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