This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 27704 - Dictionary RTCStats should use type DOMHighResTimeStamp instead of DOMHiResTimeStamp
Summary: Dictionary RTCStats should use type DOMHighResTimeStamp instead of DOMHiResTi...
Status: NEW
Alias: None
Product: WebRTC Working Group
Classification: Unclassified
Component: WebRTC API (show other bugs)
Version: unspecified
Hardware: All All
: P2 normal
Target Milestone: ---
Assignee: Dominique Hazael-Massieux
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-26 18:57 UTC by Rainer Schuster
Modified: 2014-12-26 18:57 UTC (History)
0 users

See Also:


Attachments

Description Rainer Schuster 2014-12-26 18:57:38 UTC
The specification states

dictionary RTCStats {
 DOMHiResTimeStamp timestamp;
 RTCStatsType type;
 DOMString id;
};

but the following should be used
dictionary RTCStats {
 DOMHighResTimeStamp timestamp;
 RTCStatsType type;
 DOMString id;
};