mirror of
https://github.com/servo/servo.git
synced 2025-08-15 18:35:33 +01:00
Update web-platform-tests to revision af43e2eb32555059316b67fba4a1d7df6ea3148d
This commit is contained in:
parent
97c6246385
commit
2f89d25484
296 changed files with 21168 additions and 821 deletions
|
@ -1,8 +1,27 @@
|
|||
// GENERATED CONTENT - DO NOT EDIT
|
||||
// Content of this file was automatically extracted from the
|
||||
// "Feature Policy" spec.
|
||||
// See: https://wicg.github.io/feature-policy/
|
||||
// Content was automatically extracted by Reffy into reffy-reports
|
||||
// (https://github.com/tidoust/reffy-reports)
|
||||
// Source: Feature Policy (https://wicg.github.io/feature-policy/)
|
||||
|
||||
[NoInterfaceObject]
|
||||
interface Policy {
|
||||
boolean allowsFeature(DOMString feature, optional DOMString origin);
|
||||
sequence<DOMString> allowedFeatures();
|
||||
sequence<DOMString> getAllowlistForFeature(DOMString feature);
|
||||
};
|
||||
|
||||
partial interface Document {
|
||||
[SameObject] readonly attribute Policy policy;
|
||||
};
|
||||
|
||||
partial interface HTMLIFrameElement {
|
||||
[CEReactions] attribute DOMString allow;
|
||||
[SameObject] readonly attribute Policy policy;
|
||||
};
|
||||
interface FeaturePolicyViolationReportBody : ReportBody {
|
||||
readonly attribute DOMString featureId;
|
||||
readonly attribute DOMString message;
|
||||
readonly attribute DOMString? sourceFile;
|
||||
readonly attribute long? lineNumber;
|
||||
readonly attribute long? columnNumber;
|
||||
readonly attribute DOMString disposition;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue