https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d8ad96fc85ac31c9384658167571a71534db6ab5 authored by Marcos Cáceres on 18 September 2017, 06:35:29 UTC
Test PaymentDetailsUpdate error member
Tip revision: d8ad96f
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