gecko-dev/dom/webidl/RTCCertificate.webidl
Martin Thomson 00a1da3757 Bug 1312306 - Update expires handling on RTCCertificate to match spec, r=bkelly,jib
MozReview-Commit-ID: Idnigs48DpY

--HG--
extra : rebase_source : 6384b670f585cc67b61179c5aa0b691498e008ef
2016-10-24 14:11:43 +11:00

18 lines
557 B
Plaintext

/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Specification: http://w3c.github.io/webrtc-pc/#certificate-management
*/
dictionary RTCCertificateExpiration {
[EnforceRange]
DOMTimeStamp expires;
};
[Pref="media.peerconnection.enabled"]
interface RTCCertificate {
readonly attribute DOMTimeStamp expires;
};