Revert "Auto merge of #25898 - jdm:rustup, r=asajeffrey"

This reverts commit ea8aed1ba9, reversing
changes made to 3749eb5397.
This commit is contained in:
Josh Matthews 2020-03-06 00:06:15 -05:00
parent ea8aed1ba9
commit a29f4a9afe
7 changed files with 24 additions and 24 deletions

View file

@ -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);
}