summaryrefslogtreecommitdiff
path: root/javascript/WebIDL/console.idl
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/WebIDL/console.idl')
-rw-r--r--javascript/WebIDL/console.idl24
1 files changed, 0 insertions, 24 deletions
diff --git a/javascript/WebIDL/console.idl b/javascript/WebIDL/console.idl
deleted file mode 100644
index 5a3d9eb27..000000000
--- a/javascript/WebIDL/console.idl
+++ /dev/null
@@ -1,24 +0,0 @@
-// de facto set of features for console object
-// https://developer.mozilla.org/en-US/docs/DOM/console
-// http://msdn.microsoft.com/en-us/library/dd565625%28v=vs.85%29.aspx#consolelogging
-// 31st October
-// Yay for non-standard standards
-
-interface Console {
- void debug(DOMString msg, Substitition... subst);
- void dir(JSObject object);
- void error(DOMString msg, Substitition... subst);
- void group();
- void groupCollapsed();
- void groupEnd();
- void info(DOMString msg, Substitition... subst);
- void log(DOMString msg, Substitition... subst);
- void time(DOMString timerName);
- void timeEnd(DOMString timerName);
- void trace();
- void warn(DOMString msg, Substitition... subst);
-};
-
-partial interface Window {
- readonly attribute Console console;
-}; \ No newline at end of file