tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

console.idl (1194B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Console Standard (https://console.spec.whatwg.org/)
      5 
      6 [Exposed=*]
      7 namespace console { // but see namespace object requirements below
      8  // Logging
      9  undefined assert(optional boolean condition = false, any... data);
     10  undefined clear();
     11  undefined debug(any... data);
     12  undefined error(any... data);
     13  undefined info(any... data);
     14  undefined log(any... data);
     15  undefined table(optional any tabularData, optional sequence<DOMString> properties);
     16  undefined trace(any... data);
     17  undefined warn(any... data);
     18  undefined dir(optional any item, optional object? options);
     19  undefined dirxml(any... data);
     20 
     21  // Counting
     22  undefined count(optional DOMString label = "default");
     23  undefined countReset(optional DOMString label = "default");
     24 
     25  // Grouping
     26  undefined group(any... data);
     27  undefined groupCollapsed(any... data);
     28  undefined groupEnd();
     29 
     30  // Timing
     31  undefined time(optional DOMString label = "default");
     32  undefined timeLog(optional DOMString label = "default", any... data);
     33  undefined timeEnd(optional DOMString label = "default");
     34 };