diff options
Diffstat (limited to 'components/script/dom/rtcpeerconnectioniceevent.rs')
-rw-r--r-- | components/script/dom/rtcpeerconnectioniceevent.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/rtcpeerconnectioniceevent.rs b/components/script/dom/rtcpeerconnectioniceevent.rs index 2a77fd70d84..47dc3742da1 100644 --- a/components/script/dom/rtcpeerconnectioniceevent.rs +++ b/components/script/dom/rtcpeerconnectioniceevent.rs @@ -90,17 +90,17 @@ impl RTCPeerConnectionIceEvent { } impl RTCPeerConnectionIceEventMethods for RTCPeerConnectionIceEvent { - /// https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnectioniceevent-candidate + /// <https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnectioniceevent-candidate> fn GetCandidate(&self) -> Option<DomRoot<RTCIceCandidate>> { self.candidate.as_ref().map(|x| DomRoot::from_ref(&**x)) } - /// https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnectioniceevent-url + /// <https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnectioniceevent-url> fn GetUrl(&self) -> Option<DOMString> { self.url.clone() } - /// https://dom.spec.whatwg.org/#dom-event-istrusted + /// <https://dom.spec.whatwg.org/#dom-event-istrusted> fn IsTrusted(&self) -> bool { self.event.IsTrusted() } |