mirror of
https://github.com/servo/servo
synced 2026-04-26 01:25:32 +02:00
Initialize Sanitizer API implementation with partially implemented constructor and `get()` methods of the `Sanitizer` interface, which allows the sub-sequential implementation to be tested by WPT. The `Sanitizer` interface is hidden behind the feature flag `dom_sanitizer_enabled`, which is disabled by default. Specification: https://wicg.github.io/sanitizer-api/ Testing: Enable WPT tests for Sanitizer API. Fixes: Part of #43948 --------- Signed-off-by: Kingsley Yung <kingsley@kkoyung.dev>
11 lines
408 B
Rust
11 lines
408 B
Rust
/* 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/. */
|
|
|
|
pub(crate) mod csp;
|
|
pub(crate) mod csppolicyviolationreport;
|
|
pub(crate) mod cspviolationreporttask;
|
|
pub(crate) mod sanitizer;
|
|
pub(crate) mod securitypolicyviolationevent;
|
|
pub(crate) mod xframeoptions;
|