-
Notifications
You must be signed in to change notification settings - Fork 173
Open
Labels
Description
There appears to be some overlap between the sandbox and allow attributes. Have the designers considered migrating sandbox directives to Feature Policy? This might enable equivalence between these, and eventual deprecation of sandbox in favour of allow:
<iframe sandbox="allow-forms allow-modals" allow="geolocation" ...>
<iframe sandbox allow="forms modals geolocation" ...>With the transitionary, compatible use of:
<iframe sandbox="allow-forms allow-modals" allow="forms modals geolocation" ...>developit