summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/idlharness.tentative.window.js
blob: 07847fdb39ea21b3feeebc10501d3aa6bdf97881 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

idl_test(
    ['trusted-types'],
    ['html', 'dom'],
    idl_array => {
      idl_array.add_objects({
        TrustedTypePolicyFactory: ['window.trustedTypes'],
        TrustedTypePolicy: ['window.trustedTypes.createPolicy("SomeName", { createHTML: s => s })'],
        TrustedHTML: ['window.trustedTypes.createPolicy("SomeName1", { createHTML: s => s }).createHTML("A string")'],
        TrustedScript: ['window.trustedTypes.createPolicy("SomeName2", { createScript: s => s }).createScript("A string")'],
        TrustedScriptURL: ['window.trustedTypes.createPolicy("SomeName3", { createScriptURL: s => s }).createScriptURL("A string")'],
      });
    }
);