From 042fcb82b83d19bf08afd3367235ac71a60b3850 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 7 Jun 2016 16:01:04 +0100 Subject: Move javascript content handler as appropriate for updated source format --- content/handlers/javascript/WebIDL/console.idl | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 content/handlers/javascript/WebIDL/console.idl (limited to 'content/handlers/javascript/WebIDL/console.idl') diff --git a/content/handlers/javascript/WebIDL/console.idl b/content/handlers/javascript/WebIDL/console.idl new file mode 100644 index 000000000..5a3d9eb27 --- /dev/null +++ b/content/handlers/javascript/WebIDL/console.idl @@ -0,0 +1,24 @@ +// 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 -- cgit v1.2.3