https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 571391302e8d9c3aa67bbea268e1b3cdb47248f3 authored by James Graham on 11 December 2018, 15:25:47 UTC
Fix use of wpt settings in firefox Browser
Tip revision: 5713913
supported-longtask-types.any.js
test(() => {
  if (typeof PerformanceObserver.supportedEntryTypes === "undefined")
    assert_unreached("supportedEntryTypes is not supported.");
  const types = PerformanceObserver.supportedEntryTypes;
  assert_true(types.includes("longtask"),
    "There should be 'longtask' in PerformanceObserver.supportedEntryTypes");
  assert_false(types.includes("taskattribution"),
    "There should NOT be 'taskattribution' in PerformanceObserver.supportedEntryTypes");
}, "supportedEntryTypes contains 'longtask' but not 'taskattribution'.");
back to top