Lines Matching refs:obs
4 const obs = new PerformanceObserver(() => {});
6 obs.observe({entryTypes: "mark"});
11 const obs = new PerformanceObserver(() => {});
12 obs.observe({entryTypes: []});
16 const obs = new PerformanceObserver(() => {});
17 obs.observe({entryTypes: ["this-cannot-match-an-entryType"]});
18 obs.observe({entryTypes: ["marks","navigate", "resources"]});
22 const obs = new PerformanceObserver(() => {});
23 obs.observe({entryTypes: ["mark","this-cannot-match-an-entryType"]});
24 obs.observe({entryTypes: ["this-cannot-match-an-entryType","mark"]});
25 obs.observe({entryTypes: ["mark"], others: true});
31 function (entryList, obs) { argument
35 …assert_true(obs instanceof PerformanceObserver, "second callback parameter must be a PerformanceOb…
37 assert_equals(observer, obs, "observer is second parameter");
38 assert_equals(self, obs, "this and second parameter are the same");
51 t.step_func(function (entryList, obs) { argument