diff options
Diffstat (limited to 'components/script/dom/workletglobalscope.rs')
-rw-r--r-- | components/script/dom/workletglobalscope.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/workletglobalscope.rs b/components/script/dom/workletglobalscope.rs index adae76e22bb..3dea747ee74 100644 --- a/components/script/dom/workletglobalscope.rs +++ b/components/script/dom/workletglobalscope.rs @@ -33,7 +33,7 @@ use std::sync::Arc; use std::sync::mpsc::Sender; #[dom_struct] -/// https://drafts.css-houdini.org/worklets/#workletglobalscope +/// <https://drafts.css-houdini.org/worklets/#workletglobalscope> pub struct WorkletGlobalScope { /// The global for this worklet. globalscope: GlobalScope, @@ -154,7 +154,7 @@ pub struct WorkletGlobalScopeInit { pub image_cache: Arc<ImageCache>, } -/// https://drafts.css-houdini.org/worklets/#worklet-global-scope-type +/// <https://drafts.css-houdini.org/worklets/#worklet-global-scope-type> #[derive(Clone, Copy, Debug, HeapSizeOf, JSTraceable)] pub enum WorkletGlobalScopeType { /// A servo-specific testing worklet |