aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/rtcdatachannelevent.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/rtcdatachannelevent.rs')
-rw-r--r--components/script/dom/rtcdatachannelevent.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/components/script/dom/rtcdatachannelevent.rs b/components/script/dom/rtcdatachannelevent.rs
index cd5239eff79..95935f68107 100644
--- a/components/script/dom/rtcdatachannelevent.rs
+++ b/components/script/dom/rtcdatachannelevent.rs
@@ -48,6 +48,7 @@ impl RTCDataChannelEvent {
event
}
+ #[allow(non_snake_case)]
pub fn Constructor(
window: &Window,
type_: DOMString,
@@ -64,10 +65,12 @@ impl RTCDataChannelEvent {
}
impl RTCDataChannelEventMethods for RTCDataChannelEvent {
+ // https://www.w3.org/TR/webrtc/#dom-datachannelevent-channel
fn Channel(&self) -> DomRoot<RTCDataChannel> {
DomRoot::from_ref(&*self.channel)
}
+ // https://dom.spec.whatwg.org/#dom-event-istrusted
fn IsTrusted(&self) -> bool {
self.event.IsTrusted()
}