11cb0ef41Sopenharmony_ci// META: global=window,dedicatedworker,shadowrealm
21cb0ef41Sopenharmony_ci/**
31cb0ef41Sopenharmony_ci * These tests assert the non-existence of certain
41cb0ef41Sopenharmony_ci * legacy Console methods that are not included in
51cb0ef41Sopenharmony_ci * the specification: http://console.spec.whatwg.org/
61cb0ef41Sopenharmony_ci */
71cb0ef41Sopenharmony_ci
81cb0ef41Sopenharmony_ci"use strict";
91cb0ef41Sopenharmony_ci
101cb0ef41Sopenharmony_citest(() => {
111cb0ef41Sopenharmony_ci  assert_equals(console.timeline, undefined, "console.timeline should be undefined");
121cb0ef41Sopenharmony_ci}, "'timeline' function should not exist on the console object");
131cb0ef41Sopenharmony_ci
141cb0ef41Sopenharmony_citest(() => {
151cb0ef41Sopenharmony_ci  assert_equals(console.timelineEnd, undefined, "console.timelineEnd should be undefined");
161cb0ef41Sopenharmony_ci}, "'timelineEnd' function should not exist on the console object");
171cb0ef41Sopenharmony_ci
181cb0ef41Sopenharmony_citest(() => {
191cb0ef41Sopenharmony_ci  assert_equals(console.markTimeline, undefined, "console.markTimeline should be undefined");
201cb0ef41Sopenharmony_ci}, "'markTimeline' function should not exist on the console object");
21