aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/rtcpeerconnectioniceevent.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2019-01-28 22:24:16 -0800
committerManish Goregaokar <manishsmail@gmail.com>2019-01-29 11:37:00 -0800
commitb7e2e79e53d329e5e38c3a7e1f245a1832a47b06 (patch)
tree8676c871894271a198623eb300d6c399dd4148a1 /components/script/dom/rtcpeerconnectioniceevent.rs
parent7761243100367e3d19891bb3ae04e9ad32e0006d (diff)
downloadservo-b7e2e79e53d329e5e38c3a7e1f245a1832a47b06.tar.gz
servo-b7e2e79e53d329e5e38c3a7e1f245a1832a47b06.zip
Use draft spec links
Diffstat (limited to 'components/script/dom/rtcpeerconnectioniceevent.rs')
-rw-r--r--components/script/dom/rtcpeerconnectioniceevent.rs4
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()
}