Update web-platform-tests to revision abd18b3e018d25ed668d179c905b7869dca5e239

This commit is contained in:
WPT Sync Bot 2018-07-19 21:07:28 -04:00
parent 908a642063
commit 158f7eec0e
117 changed files with 2997 additions and 434 deletions

View file

@ -1,9 +1,13 @@
// GENERATED CONTENT - DO NOT EDIT
// Content of this file was automatically extracted from the
// "Console Standard" spec.
// See: https://console.spec.whatwg.org/
[Exposed=(Window,Worker,Worklet)]
namespace console { // but see namespace object requirements below
// Logging
void assert(optional boolean condition = false, any... data);
void clear();
void count(optional DOMString label = "default");
void debug(any... data);
void error(any... data);
void info(any... data);
@ -14,6 +18,10 @@ namespace console { // but see namespace object requirements below
void dir(any item, optional object? options);
void dirxml(any... data);
// Counting
void count(optional DOMString label = "default");
void countReset(optional DOMString label = "default");
// Grouping
void group(any... data);
void groupCollapsed(any... data);
@ -21,5 +29,6 @@ namespace console { // but see namespace object requirements below
// Timing
void time(optional DOMString label = "default");
void timeLog(optional DOMString label = "default", any... data);
void timeEnd(optional DOMString label = "default");
};