blob: e43366bd5f99f6ff5c7a5ea4cbf12c4541bfbf9d [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://github.com/wicg/trusted-types
dictionary TrustedTypePolicyOptions {
CreateHTMLCallback createHTML;
CreateScriptCallback createScript;
CreateURLCallback createScriptURL;
};
callback CreateHTMLCallback = DOMString? (DOMString input, any... args);
callback CreateScriptCallback = DOMString? (DOMString input, any... args);
callback CreateURLCallback = USVString? (DOMString input, any... args);