mirror of
https://github.com/servo/servo.git
synced 2025-09-27 07:10:19 +01:00
Everything related to Trusted Types has been implemented. Failing WPT tests are related to other features such as SVG scripts. Fixes #36258 Signed-off-by: Tim van der Lippe <tvanderlippe@gmail.com>
13 lines
395 B
Text
13 lines
395 B
Text
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
/*
|
|
* The origin of this IDL file is
|
|
* https://www.w3.org/TR/trusted-types/#trusted-script
|
|
*/
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface TrustedScript {
|
|
stringifier;
|
|
DOMString toJSON();
|
|
};
|