implement PerformanceObserverInit.buffered (fixes #18108)

This commit is contained in:
Remi THEBAULT 2017-08-21 02:02:10 +02:00
parent 10cd518b59
commit e186b52b04
4 changed files with 35 additions and 2 deletions

View file

@ -51,6 +51,10 @@ impl PerformanceEntry {
pub fn name(&self) -> &DOMString {
&self.name
}
pub fn start_time(&self) -> f64 {
self.start_time
}
}
impl PerformanceEntryMethods for PerformanceEntry {