Let resources timing entries be added to performance entry buffer.

Update relevant tests to properly report and expect failure.
Update manifest.
This commit is contained in:
gatowololo 2019-06-07 13:16:43 -07:00
parent a634f05024
commit 9eb3687b19
17 changed files with 92 additions and 70 deletions

View file

@ -62,7 +62,7 @@ pub fn submit_timing_data(
PerformanceResourceTiming::new(global, url, initiator_type, None, resource_timing);
global
.performance()
.queue_entry(performance_entry.upcast::<PerformanceEntry>(), false);
.queue_entry(performance_entry.upcast::<PerformanceEntry>(), true);
}
impl<Listener: PreInvoke + Send + 'static> NetworkListener<Listener> {