• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/**
2 * These tests assert the non-existence of certain
3 * legacy Console methods that are not included in
4 * the specification: http://console.spec.whatwg.org/
5 */
6
7"use strict";
8
9test(() => {
10  assert_equals(console.timeline, undefined, "console.timeline should be undefined");
11}, "'timeline' function should not exist on the console object");
12
13test(() => {
14  assert_equals(console.timelineEnd, undefined, "console.timelineEnd should be undefined");
15}, "'timelineEnd' function should not exist on the console object");
16
17test(() => {
18  assert_equals(console.markTimeline, undefined, "console.markTimeline should be undefined");
19}, "'markTimeline' function should not exist on the console object");
20