Buffer perf notifications in paint timing test

This commit is contained in:
Fernando Jiménez Moreno 2017-08-25 11:27:31 +02:00
parent 772a8464eb
commit 786c27cfbb
2 changed files with 2 additions and 2 deletions

View file

@ -27532,7 +27532,7 @@
"testharness"
],
"mozilla/paint_timing.html": [
"8cf0400c36168b57c386253d647b61013896d325",
"fb1100bdf9a5a3516f40fbb36e89714fe860830b",
"testharness"
],
"mozilla/parentNode_querySelector.html": [

View file

@ -14,5 +14,5 @@ var observer = new PerformanceObserver(t.step_func_done(list => {
assert_equals(entry.duration, 0, "Duration is 0");
});
}));
observer.observe({entryTypes: ['paint']});
observer.observe({entryTypes: ['paint'], buffered: true});
</script>