mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
We now check the sink of script.src for trusted types. This is the first attribute that we check, other sinks will be implemented in follow-up changes. The algorithms currently hardcode various parts. That's because I need to refactor a couple of algorithms already present in TrustedTypePolicy. They use callbacks at the moment, which made sense for their initial use. However, for these new algorithms they don't work. Therefore, I will align them with the specification by taking in an enum. However, since that's a bigger refactoring, I left that out of this PR (which is already quite big). The other trusted types support (createScript and createHTML) will also be implemented separately. Part of #36258 --------- Signed-off-by: Tim van der Lippe <tvanderlippe@gmail.com> Signed-off-by: Tim van der Lippe <TimvdLippe@users.noreply.github.com> Co-authored-by: Josh Matthews <josh@joshmatthews.net>
54 lines
1.6 KiB
Rust
54 lines
1.6 KiB
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/. */
|
|
|
|
use std::fmt;
|
|
|
|
use dom_struct::dom_struct;
|
|
|
|
use crate::dom::bindings::codegen::Bindings::TrustedScriptURLBinding::TrustedScriptURLMethods;
|
|
use crate::dom::bindings::reflector::{Reflector, reflect_dom_object};
|
|
use crate::dom::bindings::root::DomRoot;
|
|
use crate::dom::bindings::str::DOMString;
|
|
use crate::dom::globalscope::GlobalScope;
|
|
use crate::script_runtime::CanGc;
|
|
|
|
#[dom_struct]
|
|
pub struct TrustedScriptURL {
|
|
reflector_: Reflector,
|
|
|
|
data: String,
|
|
}
|
|
|
|
impl TrustedScriptURL {
|
|
fn new_inherited(data: String) -> Self {
|
|
Self {
|
|
reflector_: Reflector::new(),
|
|
data,
|
|
}
|
|
}
|
|
|
|
#[cfg_attr(crown, allow(crown::unrooted_must_root))]
|
|
pub(crate) fn new(data: String, global: &GlobalScope, can_gc: CanGc) -> DomRoot<Self> {
|
|
reflect_dom_object(Box::new(Self::new_inherited(data)), global, can_gc)
|
|
}
|
|
}
|
|
|
|
impl fmt::Display for TrustedScriptURL {
|
|
#[inline]
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
f.write_str(&self.data)
|
|
}
|
|
}
|
|
|
|
impl TrustedScriptURLMethods<crate::DomTypeHolder> for TrustedScriptURL {
|
|
/// <https://www.w3.org/TR/trusted-types/#trustedscripturl-stringification-behavior>
|
|
fn Stringifier(&self) -> DOMString {
|
|
DOMString::from(&*self.data)
|
|
}
|
|
|
|
/// <https://www.w3.org/TR/trusted-types/#dom-trustedscripturl-tojson>
|
|
fn ToJSON(&self) -> DOMString {
|
|
DOMString::from(&*self.data)
|
|
}
|
|
}
|