https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 776f1c47d40d3b519ecda37ec8d9927feda79bf4 authored by Boris Zbarsky on 04 April 2018, 18:03:21 UTC
part 2. Combine HTMLConstructor and CreateXULOrHTMLElement into a single function.
Tip revision: 776f1c4
entry_type.any.js
test(function () {
  self.performance.mark('mark');
  var mark_entry = self.performance.getEntriesByName('mark')[0];

  assert_equals(Object.prototype.toString.call(mark_entry), '[object PerformanceMark]', 'Class name of mark entry should be PerformanceMark.');
}, "Validate the user timing entry type PerformanceMark");

test(function () {
  self.performance.measure('measure');
  var measure_entry = self.performance.getEntriesByName('measure')[0];

  assert_equals(Object.prototype.toString.call(measure_entry), '[object PerformanceMeasure]', 'Class name of measure entry should be PerformanceMeasure.');
}, "Validate the user timing entry type PerformanceMeasure");
back to top