https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 85f064aac43a66ea301553d6873a499aab3cf340 authored by Marcos Cáceres on 21 March 2018, 02:45:39 UTC
Edge doesn't do object spread yet
Tip revision: 85f064a
console-timeline-timelineEnd-historical.any.js
"use strict";

test(() => {
  assert_equals(console.timeline, undefined, "console.timeline should be undefined");
}, "'timeline' function should not exist on the console object");

test(() => {
  assert_equals(console.timelineEnd, undefined, "console.timelineEnd should be undefined");
}, "'timelineEnd' function should not exist on the console object");
back to top