mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 13:37:44 +00:00
LibWeb+LibWebView+WebContent: Add APIs to manage an autoplay allowlist
The spec defines a Permissions Policy to control some browser behaviors on a per-origin basis. Management of these permissions live in their own spec: https://w3c.github.io/webappsec-permissions-policy/ This implements a somewhat ad-hoc Permissions Policy for autoplaying media elements. We will need to implement the entire policy spec for this to be more general.
This commit is contained in:
parent
6131e621d6
commit
7966fc4780
12 changed files with 209 additions and 0 deletions
|
@ -475,6 +475,10 @@ namespace Web::PerformanceTimeline {
|
|||
class PerformanceEntry;
|
||||
}
|
||||
|
||||
namespace Web::PermissionsPolicy {
|
||||
class AutoplayAllowlist;
|
||||
}
|
||||
|
||||
namespace Web::Platform {
|
||||
class Timer;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue