diff options
Diffstat (limited to 'components/script/dom/rtcpeerconnectioniceevent.rs')
-rw-r--r-- | components/script/dom/rtcpeerconnectioniceevent.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/rtcpeerconnectioniceevent.rs b/components/script/dom/rtcpeerconnectioniceevent.rs index f77d0ec2ad9..8293ed48696 100644 --- a/components/script/dom/rtcpeerconnectioniceevent.rs +++ b/components/script/dom/rtcpeerconnectioniceevent.rs @@ -75,12 +75,12 @@ impl RTCPeerConnectionIceEvent { } impl RTCPeerConnectionIceEventMethods for RTCPeerConnectionIceEvent { - /// https://www.w3.org/TR/webrtc/#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://www.w3.org/TR/webrtc/#dom-rtcpeerconnectioniceevent-url + /// https://w3c.github.io/webrtc-pc/#dom-rtcpeerconnectioniceevent-url fn GetUrl(&self) -> Option<DOMString> { self.url.clone() } |