aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/broadcastchannel.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/broadcastchannel.rs')
-rw-r--r--components/script/dom/broadcastchannel.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/broadcastchannel.rs b/components/script/dom/broadcastchannel.rs
index f7d75d8c101..4a1e35d2ad8 100644
--- a/components/script/dom/broadcastchannel.rs
+++ b/components/script/dom/broadcastchannel.rs
@@ -98,9 +98,9 @@ impl BroadcastChannelMethods for BroadcastChannel {
self.closed.set(true);
}
- // <https://html.spec.whatwg.org/multipage/#handler-broadcastchannel-onmessageerror>
+ /// <https://html.spec.whatwg.org/multipage/#handler-broadcastchannel-onmessageerror>
event_handler!(messageerror, GetOnmessageerror, SetOnmessageerror);
- // <https://html.spec.whatwg.org/multipage/#handler-broadcastchannel-onmessage>
+ /// <https://html.spec.whatwg.org/multipage/#handler-broadcastchannel-onmessage>
event_handler!(message, GetOnmessage, SetOnmessage);
}