| Index: Source/WebCore/inspector/InjectedScriptSource.js
|
| diff --git a/Source/WebCore/inspector/InjectedScriptSource.js b/Source/WebCore/inspector/InjectedScriptSource.js
|
| index fea1564d102f6536f076e9f40df672d9ce448d84..34e163ec5ba633670d5ae1e0c28ad6f7f6ead969 100644
|
| --- a/Source/WebCore/inspector/InjectedScriptSource.js
|
| +++ b/Source/WebCore/inspector/InjectedScriptSource.js
|
| @@ -1153,7 +1153,7 @@ function CommandLineAPI(commandLineAPIImpl, callFrame)
|
| */
|
| CommandLineAPI.members_ = [
|
| "$", "$$", "$x", "dir", "dirxml", "keys", "values", "profile", "profileEnd",
|
| - "monitorEvents", "unmonitorEvents", "inspect", "copy", "clear", "getEventListeners"
|
| + "monitorEvents", "unmonitorEvents", "inspect", "copy", "clear", "getEventListeners", "table"
|
| ];
|
|
|
| /**
|
| @@ -1310,6 +1310,11 @@ CommandLineAPIImpl.prototype = {
|
| return InjectedScriptHost.getEventListeners(node);
|
| },
|
|
|
| + table: function()
|
| + {
|
| + inspectedWindow.console.table.apply(inspectedWindow.console, arguments);
|
| + },
|
| +
|
| /**
|
| * @param {number} num
|
| */
|
|
|