diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-03-06 00:06:15 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2020-03-06 00:06:15 -0500 |
commit | a29f4a9afee9c67c45aaf0011ce2c5eb7007ed35 (patch) | |
tree | dbc871edee1d4586e2fcb113c103b9657b5fbed6 /components/script/dom/broadcastchannel.rs | |
parent | ea8aed1ba927012d992a3d3c9880858e0282f5f9 (diff) | |
download | servo-a29f4a9afee9c67c45aaf0011ce2c5eb7007ed35.tar.gz servo-a29f4a9afee9c67c45aaf0011ce2c5eb7007ed35.zip |
Revert "Auto merge of #25898 - jdm:rustup, r=asajeffrey"
This reverts commit ea8aed1ba927012d992a3d3c9880858e0282f5f9, reversing
changes made to 3749eb53971b688b855d6b1850f41b4c346cd2da.
Diffstat (limited to 'components/script/dom/broadcastchannel.rs')
-rw-r--r-- | components/script/dom/broadcastchannel.rs | 4 |
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); } |