mirror of
https://github.com/servo/servo.git
synced 2025-10-17 16:59:27 +01:00
19 lines
430 B
JavaScript
19 lines
430 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: timeout=long
|
|
|
|
"use strict";
|
|
|
|
// https://wicg.github.io/feature-policy/
|
|
|
|
idl_test(
|
|
['feature-policy'],
|
|
['reporting', 'html', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
Document: ['document'],
|
|
HTMLIframeElement: ['document.createElement("iframe")'],
|
|
FeaturePolicy: ['document.featurePolicy'],
|
|
})
|
|
}
|
|
);
|